From 3c6d98638e9f8914d1ef2b2168c4d72c8285d740 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Mon, 9 Feb 2026 14:33:20 -0600 Subject: [PATCH] add coverage report step to test workflow --- .github/workflows/test-showbridge.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-showbridge.yaml b/.github/workflows/test-showbridge.yaml index 477ddc8..552aa7e 100644 --- a/.github/workflows/test-showbridge.yaml +++ b/.github/workflows/test-showbridge.yaml @@ -34,4 +34,13 @@ jobs: run: go mod tidy - name: run tests - run: go test ./... \ No newline at end of file + run: go test ./... + + - name: Update coverage report + uses: ncruces/go-coverage-report@v0.3.2 + with: + report: true + chart: true + amend: true + if: github.event_name == 'push' + continue-on-error: true