Skip to content

Commit

Permalink
ci: disable race detector on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sagikazarmark committed Dec 28, 2021
1 parent 04d3a0c commit 7b68d33
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -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
Expand Down

0 comments on commit 7b68d33

Please sign in to comment.