We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44a2e75 commit 53351b1Copy full SHA for 53351b1
.github/workflows/code_coverage.yml
@@ -33,7 +33,7 @@ jobs:
33
- name: Make coverage directory
34
run: mkdir coverage
35
- name: Run grcov
36
- run: grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --keep-only '**/src/**' --ignore '**/tests/**' --ignore '**/examples/**' -o ./coverage/lcov.info
+ run: grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --keep-only 'src/**' --ignore 'tests/**' --ignore 'examples/**' -o ./coverage/lcov.info
37
- name: Generate HTML coverage report
38
run: genhtml -o coverage-report.html --ignore-errors unmapped ./coverage/lcov.info
39
- name: Coveralls upload
0 commit comments