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 a12ae30 commit 89a0adcCopy full SHA for 89a0adc
.github/workflows/ci.yml
@@ -33,6 +33,11 @@ jobs:
33
run: |
34
pip install -r requirements.txt
35
pip install -r docs/requirements.txt
36
+
37
+ - name: Install lcov
38
+ run: |
39
+ sudo apt-get update
40
+ sudo apt-get install -y lcov
41
42
- name: Build package
43
@@ -45,6 +50,8 @@ jobs:
45
50
- name: Capture Coverage Data with lcov
46
51
47
52
cd build
53
54
48
55
lcov --capture --directory . --output-file coverage.info
49
56
57
- name: Generate HTML Coverage Report with genhtml
0 commit comments