diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2ec6b8..3a66062 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - category: [static, unit, widget] + category: [unit] fail-fast: false steps: - name: Clone the repository @@ -95,9 +95,14 @@ jobs: name: code-coverage path: coverage - name: Report code coverage - uses: zgosalvez/github-actions-report-lcov@49af65b0586c274a625a41a2dc8aaaae7d00568b + id: coverage + uses: bartosz347/github-actions-report-lcov@fcd327a172f397f51efa452df253100bfd3eabec with: coverage-files: coverage/lcov.*.info minimum-coverage: 90 artifact-name: code-coverage-report github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Print output coverage + run: | + echo "Coverage: ${{ steps.coverage.outputs.total-coverage-percentage }}" +