We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb5b398 commit d1ab167Copy full SHA for d1ab167
1 file changed
.github/workflows/build.yml
@@ -64,9 +64,15 @@ jobs:
64
cmake --preset=debug
65
cmake --build --preset=debug
66
ctest --preset=debug
67
- lcov --gcov-tool gcov --capture --directory . --output-file lcov.info --rc geninfo_unexecuted_blocks=1 --ignore-errors mismatch
+ lcov --gcov-tool gcov \
68
+ --capture \
69
+ --directory . \
70
+ --output-file lcov.info \
71
+ --rc geninfo_unexecuted_blocks=1 \
72
+ --ignore-errors mismatch
73
+ lcov --remove lcov.info '/home/*' '/usr/*' 'tests/*' --output-file lcov_filtered.info
74
75
- name: Upload coverage to Coveralls
76
uses: coverallsapp/github-action@v2
77
with:
- path-to-lcov: lcov.info
78
+ path-to-lcov: lcov_filtered.info
0 commit comments