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 9db0e2c commit e0cd2e3Copy full SHA for e0cd2e3
.github/workflows/build.yml
@@ -10,13 +10,13 @@ jobs:
10
runs-on: macos-latest
11
steps:
12
- name: Checkout
13
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
14
- name: Build and Test
15
run: swift test --enable-code-coverage
16
- name: Gather code coverage
17
run: xcrun llvm-cov export -format="lcov" .build/debug/SwiftDrawPackageTests.xctest/Contents/MacOS/SwiftDrawPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
18
- name: Upload Coverage
19
- uses: codecov/codecov-action@v2
+ uses: codecov/codecov-action@v3
20
with:
21
fail_ci_if_error: true
22
files: ./coverage_report.lcov
0 commit comments