Skip to content

Commit

Permalink
ci: move coverage step (#2506)
Browse files Browse the repository at this point in the history
  • Loading branch information
acud authored Sep 15, 2021
1 parent 471e819 commit e207590
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
- name: Vet
if: matrix.os == 'ubuntu-latest'
run: make vet
- name: Coverage
if: matrix.os == 'ubuntu-latest'
run: go test -coverprofile=cover.out ./...
- name: Test with Race Detector
# do not tests with race detector on windows
# until the issue with badgerdb memory allocation
# is solved in this case
if: matrix.os != 'windows-latest'
run: make test-race
- name: Coverage
if: matrix.os == 'ubuntu-latest'
run: go test -coverprofile=cover.out ./...
- name: Test
if: matrix.os == 'windows-latest'
run: make test
Expand Down

0 comments on commit e207590

Please sign in to comment.