From 7b68d3350587ffe4776940fc6c0fef2961ee03ef Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Tue, 28 Dec 2021 09:37:48 +0100 Subject: [PATCH] ci: disable race detector on windows --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53ba80443..263b9eb51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,11 @@ jobs: - name: Test run: go test -race -v ./... + if: runner.os != 'Windows' + + - name: Test (without race detector) + run: go test -v ./... + if: runner.os == 'Windows' lint: name: Lint