diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 090925c..a300d72 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -18,6 +18,10 @@ jobs: - name: Get dependencies run: go get -t -v - name: Run test + if: matrix.os == 'windows-latest' + run: go test -v + - name: Run test coverage + if: matrix.os != 'windows-latest' run: go test -v -coverprofile=coverage.out -covermode=count - name: Publish coverage if: matrix.os != 'windows-latest'