mirror of
https://github.com/spf13/viper
synced 2024-12-23 03:57:01 +00:00
ci: disable race detector on windows
This commit is contained in:
parent
04d3a0cb02
commit
7b68d33505
1 changed files with 5 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -31,6 +31,11 @@ jobs:
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -race -v ./...
|
run: go test -race -v ./...
|
||||||
|
if: runner.os != 'Windows'
|
||||||
|
|
||||||
|
- name: Test (without race detector)
|
||||||
|
run: go test -v ./...
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
name: Lint
|
name: Lint
|
||||||
|
|
Loading…
Reference in a new issue