diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d97232803b3..539ac5f7c82 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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