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 f8be5d1 commit c6e45aeCopy full SHA for c6e45ae
.github/workflows/coverage.yml
@@ -24,15 +24,15 @@ jobs:
24
25
- name: Install kcov
26
run: |
27
- wget https://github.com/SimonKagstrom/kcov/releases/download/v42/kcov-amd64.tar.gz
28
- sudo tar xf kcov-amd64.tar.gz -C /
+ sudo apt update
+ sudo apt install -y kcov
29
+ kcov --version
30
- - name: Run Tests with kcov
31
+ - name: ▶️ Run Tests with Code Coverage
32
- kcov --version
33
zig build test -Dcoverage --summary all
34
35
- - name: Upload to Codecov
+ - name: ⏫ Upload Coverage to Codecov
36
uses: codecov/codecov-action@v5
37
with:
38
directory: zig-out/coverage/kcov-merged
0 commit comments