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 b37452a commit c284743Copy full SHA for c284743
.github/workflows/swift.yml
@@ -43,10 +43,10 @@ jobs:
43
- name: Gather code coverage
44
run: xcrun llvm-cov export -format="lcov" .build/debug/SQLiteCloudPackageTests.xctest/Contents/MacOS/SQLiteCloudPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
45
46
- - name: Upload coverage to Codecov
47
- uses: codecov/codecov-action@v2
48
- with:
49
- token: ${{ secrets.CODECOV_TOKEN }}
+ - name: Upload coverage reports to Codecov
+ uses: codecov/codecov-action@v3
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
50
fail_ci_if_error: fail
51
files: ./coverage_report.lcov
52
verbose: true
0 commit comments