Rename verify.yml.bck to verify.yml
This commit is contained in:
parent
38c620295a
commit
0f3e592957
1 changed files with 0 additions and 0 deletions
43
.github/workflows/verify.yml
vendored
Normal file
43
.github/workflows/verify.yml
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
name: verify
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.26.x'
|
||||
cache: true
|
||||
- run: go build ./...
|
||||
- run: go vet ./...
|
||||
- run: go test ./...
|
||||
|
||||
race:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.26.x'
|
||||
cache: true
|
||||
# Density-based world tests are intentionally exhaustive and race adds
|
||||
# substantial overhead; keep the package timeout above the normal 10m.
|
||||
- run: go test -race -timeout 20m ./...
|
||||
|
||||
parity:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.26.x'
|
||||
cache: true
|
||||
- run: go test ./internal/world -run TestVanillaBlockParity -count=1 -v
|
||||
Loading…
Add table
Add a link
Reference in a new issue