From 4a7d067c6c66d974af2573fae650c834b23f91d5 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Wed, 20 Jul 2022 22:09:26 +0300 Subject: [PATCH] fix: Increase CI timeout for postgres test (#3079) The Go test timeout uses 20m, if we want to get a stack trace, we must allow the actions worker to run longer than that. --- .github/workflows/coder.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 53c60cc027..538cbef8b4 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -233,7 +233,8 @@ jobs: test-go-postgres: name: "test/go/postgres" runs-on: ubuntu-latest - timeout-minutes: 20 + # This timeout must be greater than go test -timeout. + timeout-minutes: 25 steps: - uses: actions/checkout@v3