From 70e12513911caf04c0d7fce4dda5dba3bd514b66 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 28 Aug 2026 13:50:32 -0500 Subject: [PATCH] switch to uploading coverage to codecov --- .github/workflows/test-showbridge.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) 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