Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}"