Skip to content

Commit 2451d95

Browse files
committed
ci: unit test separate from make test on linux
1 parent 54f96ed commit 2451d95

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ jobs:
4040
version: latest
4141
args: --timeout=5m
4242
- name: Unit Tests
43+
if: runner.os == 'Linux'
4344
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
4449
- name: Install Tests
4550
if: runner.os != 'Windows'
4651
run: make test-install

0 commit comments

Comments
 (0)