diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index 25878c4c..6880dc8f 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -44,7 +44,8 @@ jobs: run: | set -e go test -vet=off -i ./... - #go test -vet=off -v -run=TestNoRace --failfast -p=1 ./... + # go test -vet=off -v -run=TestNoRace --failfast -p=1 ./... # coverage via cov.sh disabled while just testing the waters - go test -vet=off -v -race -p=1 --failfast ./... + # Also disable race since we are overwhelming the GHA runners. + go test -vet=off -v -p=1 --failfast ./... set +e