We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56583da commit 7ca4cf2Copy full SHA for 7ca4cf2
1 file changed
.github/workflows/ci.yml
@@ -29,6 +29,7 @@ jobs:
29
- name: Run Tests
30
run: swift test --enable-code-coverage
31
- name: Swift Coverage Report
32
- uses: maxep/spm-lcov-action@0.3.1
33
- - name: Code Coverage
34
- run: bash <(curl -s https://codecov.io/bash) -X xcodellvm
+ run: xcrun llvm-cov export -format="lcov" .build/debug/CoreDataRepositoryPackageTests.xctest/Contents/MacOS/CoreDataRepositoryPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
+ - uses: codecov/codecov-action@v3
+ with:
35
+ fail_ci_if_error: true # optional (default = false)
0 commit comments