Skip to content

Commit ee35494

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] coverage script minimal fixes.
1 parent cb73688 commit ee35494

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/c-coverage.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install Tools
2222
run: |
23-
sudo apt update
23+
sudo apt-get update
2424
sudo apt-get install lcov
2525
2626
- name: Check Tools
@@ -34,17 +34,18 @@ jobs:
3434
run: |
3535
make dependencies
3636
37-
# yamllint disable rule:line-length
3837
- name: Build
3938
run: |
4039
export VCPKG_ROOT=/usr/local/share/vcpkg
4140
make build
42-
# yamllint enable rule:line-length
41+
4342
- name: Test / Coverage
4443
run: make coverage
4544

45+
# yamllint disable rule:line-length
4646
- name: Upload coverage reports to Codecov with GitHub Action
47-
uses: codecov/codecov-action@v6
47+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
48+
# yamllint enable rule:line-length
4849
with:
4950
directory: ./coverage
5051
files: coverage/lcov.info

0 commit comments

Comments
 (0)