Ignore coverage test on windows

This commit is contained in:
Masaaki Goshima 2021-01-10 15:04:21 +09:00
parent 877a86b07e
commit c45e77eeaa
2 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,6 @@ jobs:
env: env:
GOGC: 1 GOGC: 1
- name: test with race detector - name: test with race detector
if: ${{ matrix.os != 'windows-latest' }}
run: go test -v -race ./ -count=1 run: go test -v -race ./ -count=1
coverage: coverage:
name: Coverage name: Coverage

View File

@ -1,3 +1,5 @@
// +build !windows
package json package json
import ( import (