diff --git a/.github/workflows/test-showbridge.yaml b/.github/workflows/test-showbridge.yaml index a0a5d3e..de28a10 100644 --- a/.github/workflows/test-showbridge.yaml +++ b/.github/workflows/test-showbridge.yaml @@ -38,12 +38,9 @@ jobs: - name: clean up coverage report run: cat coverage.out | grep -v "github.com/jwetzell/showbridge-go/cmd" > coverage.nocmd.out - - name: Update coverage report - uses: ncruces/go-coverage-report@v0.3.2 + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v7 with: - coverage-file: coverage.nocmd.out - report: true - chart: true - amend: true - if: github.event_name == 'push' - continue-on-error: true + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.nocmd.out