Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce04a6d commit 8ac0031Copy full SHA for 8ac0031
1 file changed
.github/workflows/tests.yml
@@ -214,5 +214,13 @@ jobs:
214
--maxfail=50 --timeout=300 --durations=25 \
215
--cov-report= --cov=lib --log-level=DEBUG
216
217
+ - name: Filter C coverage
218
+ run: |
219
+ lcov --capture --directory . --output-file coverage.info
220
+ lcov --output-file coverage.info \
221
+ --extract coverage.info $PWD/src/'*' $PWD/lib/'*'
222
+ lcov --list coverage.info
223
+ find . -name '*.gc*' -delete
224
+ if: ${{ runner.os != 'macOS' }}
225
- name: Upload code coverage
226
uses: codecov/codecov-action@v1
0 commit comments