Skip to content

Commit 7652cff

Browse files
authored
Update ci.yml
1 parent b2ae8ba commit 7652cff

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,14 @@ jobs:
3636
./build.sh
3737
./bin/test_${{ matrix.project }}
3838
./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
3945
40-
# Step 4: Upload coverage to Codecov
46+
# Step 5: Upload coverage to Codecov
4147
- name: Upload coverage to Codecov
4248
run: bash <(curl -s https://codecov.io/bash)
4349
env:

0 commit comments

Comments
 (0)