Remove backup verify.yml file

This commit is contained in:
Daniar Mannanov 2026-08-26 01:59:48 +03:00 committed by GitHub
parent 808f2272ea
commit ee634ae830
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

43
.github/workflows/verify.yml.bck 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