From fd8ad8e5a5c26e93879ff5e9c67322fed2d30c67 Mon Sep 17 00:00:00 2001 From: Antoine Toussaint Date: Sat, 22 Aug 2026 18:50:35 -0400 Subject: [PATCH] ci: raise the quality-gate timeout to 8 minutes The race and coverage gates run 4m07s-4m59s on a warm cache with ~40s of runner variance, so the 5-minute budget cancels borderline-healthy runs (PR #447's race gate: pass at 4m59s, cancelled at 5m00s, zero failures). 8 minutes restores headroom while still bounding a genuine hang. Co-Authored-By: Claude Fable 5 --- .github/workflows/go.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dd8cf890..5e78568b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,11 @@ jobs: quality: name: ${{ matrix.gate }} runs-on: ubuntu-latest - timeout-minutes: 5 + # The race and coverage gates take 4-5 minutes on a warm cache with ±40s of + # runner variance, so a 5-minute budget cancels borderline-healthy runs. + # 8 minutes keeps a hang from burning a full runner-hour while leaving the + # suite real headroom. + timeout-minutes: 8 strategy: fail-fast: true matrix: