File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
8
8
jobs :
9
- xcode_13_4 :
9
+ xcode_14 :
10
10
runs-on : macos-12
11
11
env :
12
- DEVELOPER_DIR : /Applications/Xcode_13.4 .app/Contents/Developer
12
+ DEVELOPER_DIR : /Applications/Xcode_14.0 .app/Contents/Developer
13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v2
16
16
- name : Version
17
17
run : swift --version
18
18
- name : Build
19
- run : swift build --build-tests --enable-code-coverage
19
+ run : swift build --build-tests
20
20
- name : Test
21
- run : swift test --skip-build -- enable-code-coverage
21
+ run : swift test --enable-code-coverage
22
22
- name : Gather code coverage
23
23
run : xcrun llvm-cov export -format="lcov" .build/debug/FlyingFoxPackageTests.xctest/Contents/MacOS/FlyingFoxPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
24
24
- name : Upload Coverage
25
25
uses : codecov/codecov-action@v2
26
26
with :
27
27
files : ./coverage_report.lcov
28
28
29
- xcode_14 :
29
+ xcode_13_4 :
30
30
runs-on : macos-12
31
31
env :
32
- DEVELOPER_DIR : /Applications/Xcode_14.0 .app/Contents/Developer
32
+ DEVELOPER_DIR : /Applications/Xcode_13.4 .app/Contents/Developer
33
33
steps :
34
34
- name : Checkout
35
35
uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments