diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index ba873f3..cbabaee 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -1,4 +1,4 @@ -name: Test Integration +name: Test (integration) on: push jobs: @@ -9,11 +9,10 @@ jobs: - name: Test Integration run: make test-integration - name: Coverage report - uses: mgerasimchuk/go-coverage-report@chart-diff-only + uses: ncruces/go-coverage-report@v0.2.9 with: badge-title: Coverage (integration) coverage-file: assets/coverage/integration/coverage.out report: true output-dir: assets/coverage/integration chart: true - chart-show-diff-only: true diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index a1f800c..b6fffcb 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -1,4 +1,4 @@ -name: Test Unit +name: Test (unit) on: push jobs: @@ -9,11 +9,10 @@ jobs: - name: Test Unit run: make test-unit - name: Coverage report - uses: mgerasimchuk/go-coverage-report@chart-diff-only + uses: ncruces/go-coverage-report@v0.2.9 with: badge-title: Coverage (unit) coverage-file: assets/coverage/unit/coverage.out report: true output-dir: assets/coverage/unit chart: true - chart-show-diff-only: true