ci: raise the race-suite timeout to thirty minutes

The store_sqlite package under race and coverage sits just under the old
twenty-minute wall on Linux runners, and the localization projection tests
this branch adds push it past. Thirty minutes matches how long the suite
actually needs; the per-test alarms still catch a genuine hang early.
This commit is contained in:
Andrey Kumanyaev
2026-08-17 22:00:17 +02:00
parent 5b8ae739fa
commit a51b9194e3
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
run: go build -o gortex ./cmd/gortex/
- name: Test
run: go test -race -timeout=20m -coverprofile=coverage.out ./...
run: go test -race -timeout=30m -coverprofile=coverage.out ./...
- name: Upload coverage
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.26'