ci: disable race detector on windows

This commit is contained in:
Mark Sagi-Kazar 2021-12-28 09:37:48 +01:00
parent 04d3a0cb02
commit e10ad9a097
No known key found for this signature in database
GPG key ID: 31AB0439F4C5C90E

View file

@ -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