diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e69f55fd..bad24465 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -36,15 +36,15 @@ jobs: shell: bash # Also on Windows!! run: |- mkdir -p coverage - gotestsum -- -tags='${{ matrix.tags }}' \ - -v -shuffle=on \ - -coverprofile coverage/${{ matrix.runs-on }}-${{ matrix.cgo-enabled }}.gocov \ - -covermode atomic \ + gotestsum -- -tags='${{ matrix.tags }}' \ + -v -shuffle=on \ + -coverprofile=coverage/${{ matrix.runs-on }}-${{ matrix.cgo-enabled }}-${{ matrix.tags }}.gocov \ + -covermode=atomic \ ./... - uses: actions/upload-artifact@v3 with: name: coverprofiles - path: coverage/${{ matrix.runs-on }}-${{ matrix.cgo-enabled }}-${{ matrix.tags }}.gocov + path: coverage/*.gocov report: needs: test