From 11df8f8a4b9dfe96b4d142678213ac33e31ce257 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 28 Aug 2026 13:57:35 -0500 Subject: [PATCH] don't filter out tests --- .github/workflows/test-showbridge.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-showbridge.yaml b/.github/workflows/test-showbridge.yaml index de28a10..ffd7b48 100644 --- a/.github/workflows/test-showbridge.yaml +++ b/.github/workflows/test-showbridge.yaml @@ -34,13 +34,10 @@ jobs: run: go mod tidy - name: run tests - run: go test ./... -count=1 -coverpkg "github.com/jwetzell/showbridge-go/..." -coverprofile coverage.out + run: go test -coverprofile coverage.out ./... - - name: clean up coverage report - run: cat coverage.out | grep -v "github.com/jwetzell/showbridge-go/cmd" > coverage.nocmd.out - - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} - files: coverage.nocmd.out + files: coverage.out