From 1537ea8a88d01b975cb5e1a5d25479648d73a1b0 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Fri, 4 Oct 2024 17:01:43 -0500 Subject: [PATCH] ci: Enable race detector during tests --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 380ed074..4cb0c043 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,7 +56,7 @@ jobs: with: packages: ${{ env.LINUX_DEPENDENCIES }} - name: Test - run: xvfb-run go test ./... -coverprofile=coverage.txt -covermode=atomic + run: xvfb-run go test -race ./... -coverprofile=coverage.txt -covermode=atomic build-windows: name: Build (windows)