diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index da06e5c..10eb20a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,14 +35,7 @@ jobs: - name: Test run: go test -v -coverprofile=profile.cov - - name: Convert coverage to lcov - uses: jandelgado/gcov2lcov-action@master - with: - infile: profile.cov - outfile: coverage.lcov - - name: Coveralls - uses: coverallsapp/github-action@master + uses: shogo82148/actions-goveralls@v1 with: - github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: coverage.lcov + path-to-profile: profile.cov