We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 609fef2 commit e0c5e37Copy full SHA for e0c5e37
1 file changed
.github/workflows/cpp-build-test-coverage.yml
@@ -82,6 +82,7 @@ jobs:
82
# -------------------------------------------------------
83
- name: Generate coverage report
84
run: |
85
+ cd build
86
lcov --rc geninfo_unexecuted_blocks=1 --ignore-errors mismatch -d . -c -o coverage.info
87
lcov -r coverage.info "*/_deps/*" "/usr/*" "*/tests/*" -o coverageFiltered.info
88
lcov --list coverageFiltered.info
@@ -91,5 +92,6 @@ jobs:
91
92
93
- name: Upload coverage to GitHub summary
94
95
96
echo "## Test Coverage Summary" >> $GITHUB_STEP_SUMMARY
97
lcov --summary coverageFiltered.info >> $GITHUB_STEP_SUMMARY
0 commit comments