Skip to content

Commit

Permalink
increase github test workflow timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmenendez committed Dec 23, 2024
1 parent 0a2a3d1 commit d1241bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ jobs:
env:
GORACE: atexit_sleep_ms=10 # the default of 1000 makes every Go package test sleep for 1s; see https://go.dev/issues/20364
run: go test ./...
-race -timeout=15m -vet=off
-race -timeout=1h -vet=off
-cover -coverpkg=./... -covermode=atomic -args -test.gocoverdir="$PWD/gocoverage-unit/"
- name: Run Go test
if: steps.go-test-race.outcome == 'skipped'
# quicker, non-race test in case it's a PR or push to dev
run: go test ./...
run: go test ./... -timeout=1h

0 comments on commit d1241bc

Please sign in to comment.