Rename verify.yml.bck to verify.yml

This commit is contained in:
Daniar Mannanov 2026-08-26 02:13:45 +03:00 committed by GitHub
parent 38c620295a
commit 0f3e592957
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

43
.github/workflows/verify.yml vendored Normal file
View 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