We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54f96ed commit 2451d95Copy full SHA for 2451d95
1 file changed
.github/workflows/tests.yml
@@ -40,7 +40,12 @@ jobs:
40
version: latest
41
args: --timeout=5m
42
- name: Unit Tests
43
+ if: runner.os == 'Linux'
44
run: make test
45
+ - name: Unit Tests
46
+ if: runner.os != 'Linux'
47
+ run: go test -v ./... -race -covermode=atomic -coverprofile=coverage.out
48
+ shell: bash
49
- name: Install Tests
50
if: runner.os != 'Windows'
51
run: make test-install
0 commit comments