From fe0a2b0fb1ad1c69735371798bdc4315cfab5b53 Mon Sep 17 00:00:00 2001 From: Charlie Egan Date: Mon, 11 Nov 2024 13:37:11 +0000 Subject: [PATCH] ci: Allow race detector to fail (#1253) This step is unreliable and needs more investigation. It is currently running in optional mode. Signed-off-by: Charlie Egan --- .github/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cbeb1102..1adceb58 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -77,6 +77,10 @@ jobs: with: go-version-file: go.mod - run: go test -race ./... + id: race + continue-on-error: true + - run: echo "race detector failed but job is optional" + if: job.steps.race.status == failure() code_coverage: runs-on: ubuntu-latest