Skip to content

Commit 7126502

Browse files
committed
Precreate coverage dir
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
1 parent cd91c04 commit 7126502

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,12 @@ jobs:
113113
path: .zig-cache
114114
key: zig-cache-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('build.zig', 'build.zig.zon') }}
115115

116-
- run: zig build test -Dcoverage
116+
- name: Tests coverage
117+
run: |
118+
mkdir -p zig-out/coverage
119+
zig build test -Dcoverage
117120
118121
- uses: codecov/codecov-action@v5
119122
with:
120123
use_oidc: true
121-
directory: ./zig-out/coverage
124+
directory: zig-out/coverage

0 commit comments

Comments
 (0)