diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-17 14:35:24 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-04-17 14:35:24 -0600 |
commit | 46fbf2e82248effe17c5b04057832d76c67874da (patch) | |
tree | e7dac4c2fe138b19ae6be640222706fc57efa311 /.gitea | |
parent | a7e81e79d6b29e9872296725b31268c02253406f (diff) |
fix coverage path on linux
Diffstat (limited to '.gitea')
-rw-r--r-- | .gitea/workflows/codecov.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitea/workflows/codecov.yaml b/.gitea/workflows/codecov.yaml index 153d3c1..1f22fbc 100644 --- a/.gitea/workflows/codecov.yaml +++ b/.gitea/workflows/codecov.yaml @@ -13,7 +13,7 @@ jobs: - name: Run Tests run: swift test --enable-code-coverage - name: Convert to lcov - run: llvm-cov export -format="lcov" .build/debug/swift-chess-neoPackageTests.xctest/Contents/MacOS/swift-chess-neoPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov + run: llvm-cov export -format="lcov" .build/debug/swift-chess-neoPackageTests.xctest -instr-profile .build/debug/codecov/default.profdata > info.lcov - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 with: |