File tree Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change 66 workflow_dispatch :
77
88jobs :
9- xcode_14_2 :
10- runs-on : macos-12
9+ xcode_14_3 :
10+ runs-on : macos-13
1111 env :
12- DEVELOPER_DIR : /Applications/Xcode_14.2 .app/Contents/Developer
12+ DEVELOPER_DIR : /Applications/Xcode_14.3 .app/Contents/Developer
1313 steps :
1414 - name : Checkout
1515 uses : actions/checkout@v3
1616 - name : Version
1717 run : swift --version
1818 - name : Build
19- run : swift build --build-tests
19+ run : swift test --enable-code-coverage --filter do_not_test
2020 - name : Test
21- run : swift test --enable-code-coverage
21+ run : swift test --enable-code-coverage --skip-build
2222 - name : Gather code coverage
2323 run : xcrun llvm-cov export -format="lcov" .build/debug/AllocatedLockPackageTests.xctest/Contents/MacOS/AllocatedLockPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
2424 - name : Upload Coverage
2525 uses : codecov/codecov-action@v3
2626 with :
2727 files : ./coverage_report.lcov
2828
29+ xcode_14_2 :
30+ runs-on : macos-12
31+ env :
32+ DEVELOPER_DIR : /Applications/Xcode_14.2.app/Contents/Developer
33+ steps :
34+ - name : Checkout
35+ uses : actions/checkout@v3
36+ - name : Version
37+ run : swift --version
38+ - name : Build
39+ run : swift build --build-tests
40+ - name : Test
41+ run : swift test --skip-build
42+
2943 linux_swift_5_7 :
3044 runs-on : ubuntu-latest
3145 container : swift:5.7
You can’t perform that action at this time.
0 commit comments