diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 979c9c3..0e69dc8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,13 +21,13 @@ jobs: go test -v ./... -covermode=count -coverprofile=coverage.out - name: Convert coverage to lcov uses: jandelgado/gcov2lcov-action@v1.0.0 - if: "matrix.os == 'ubuntu-latest'" + if: "matrix.platform == 'ubuntu-latest'" with: infile: coverage.out outfile: coverage.lcov - name: Coveralls uses: coverallsapp/github-action@v1.0.1 - if: "matrix.os == 'ubuntu-latest'" + if: "matrix.platform == 'ubuntu-latest'" with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: coverage.lcov