There was an error while loading. Please reload this page.
1 parent ce04a6d commit bb8d25aCopy full SHA for bb8d25a
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 . \
220
+ --include $PWD/src/'*' --include $PWD/lib/'*' \
221
+ --output-file coverage.info
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