From 4d8f850b51dade590a8672a2b938b486339c74fe Mon Sep 17 00:00:00 2001 From: Steve Coffman Date: Wed, 3 May 2023 09:59:02 -0400 Subject: [PATCH] Add timeout minutes Signed-off-by: Steve Coffman --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39174e26735..818b2da3daf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,10 +22,12 @@ jobs: uses: nick-fields/retry@v2 with: max_attempts: 3 + timeout_minutes: 20 command: go mod download && go test -race ./... - run: go mod download && go test -race ./... - name: Example tests uses: nick-fields/retry@v2 with: max_attempts: 3 + timeout_minutes: 20 command: cd _examples && go mod download && go test -race ./...