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 b2ae8ba commit 7652cffCopy full SHA for 7652cff
.github/workflows/ci.yml
@@ -36,8 +36,14 @@ jobs:
36
./build.sh
37
./bin/test_${{ matrix.project }}
38
./clean.sh
39
+ # Step 4:
40
+ - name: Generate coverage report
41
+ run: |
42
+ lcov --directory . --capture --output-file coverage.info
43
+ lcov --remove coverage.info '/usr/*' --output-file coverage.info
44
+ lcov --list coverage.info
45
- # Step 4: Upload coverage to Codecov
46
+ # Step 5: Upload coverage to Codecov
47
- name: Upload coverage to Codecov
48
run: bash <(curl -s https://codecov.io/bash)
49
env:
0 commit comments