Skip to content

Commit

Permalink
ci: disable race check on older versions of windows
Browse files Browse the repository at this point in the history
Signed-off-by: x5a17ed <[email protected]>
  • Loading branch information
0x5a17ed committed Jan 11, 2025
1 parent 4b76791 commit 67ea48b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ jobs:
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- run: go test -race ./...
- name: Run tests (with race detector on Linux)
if: matrix.os != 'windows-2019'
run: go test -race ./...

- name: Run tests (without race detector)
if: matrix.os == 'windows-2019'
run: go test ./...

0 comments on commit 67ea48b

Please sign in to comment.