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 cb73688 commit ee35494Copy full SHA for ee35494
1 file changed
.github/workflows/c-coverage.yml
@@ -20,7 +20,7 @@ jobs:
20
21
- name: Install Tools
22
run: |
23
- sudo apt update
+ sudo apt-get update
24
sudo apt-get install lcov
25
26
- name: Check Tools
@@ -34,17 +34,18 @@ jobs:
34
35
make dependencies
36
37
- # yamllint disable rule:line-length
38
- name: Build
39
40
export VCPKG_ROOT=/usr/local/share/vcpkg
41
make build
42
- # yamllint enable rule:line-length
+
43
- name: Test / Coverage
44
run: make coverage
45
+ # yamllint disable rule:line-length
46
- name: Upload coverage reports to Codecov with GitHub Action
47
- uses: codecov/codecov-action@v6
+ uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
48
+ # yamllint enable rule:line-length
49
with:
50
directory: ./coverage
51
files: coverage/lcov.info
0 commit comments