Fix test option

This commit is contained in:
Masaaki Goshima 2020-11-19 02:16:05 +09:00
parent 5701138d7d
commit df0b68da4d
1 changed files with 3 additions and 3 deletions

View File

@ -19,10 +19,10 @@ jobs:
uses: actions/checkout@v2
- name: Test
run: go test -v ./
run: go test -v ./ -count=1
- name: Test with GC
run: GOGC=1 go test -v ./
run: GOGC=1 go test -v ./ -count=1
- name: Test with race detector
run: go test -v -race ./
run: go test -v -race ./ -count=1