Skip to content

Commit d58d7b2

Browse files
committed
codecov xcode 14
1 parent faf5f56 commit d58d7b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
xcode_13_4:
9+
xcode_14:
1010
runs-on: macos-12
1111
env:
12-
DEVELOPER_DIR: /Applications/Xcode_13.4.app/Contents/Developer
12+
DEVELOPER_DIR: /Applications/Xcode_14.0.app/Contents/Developer
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v2
1616
- name: Version
1717
run: swift --version
1818
- name: Build
19-
run: swift build --build-tests --enable-code-coverage
19+
run: swift build --build-tests
2020
- name: Test
21-
run: swift test --skip-build --enable-code-coverage
21+
run: swift test --enable-code-coverage
2222
- name: Gather code coverage
2323
run: xcrun llvm-cov export -format="lcov" .build/debug/FlyingFoxPackageTests.xctest/Contents/MacOS/FlyingFoxPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
2424
- name: Upload Coverage
2525
uses: codecov/codecov-action@v2
2626
with:
2727
files: ./coverage_report.lcov
2828

29-
xcode_14:
29+
xcode_13_4:
3030
runs-on: macos-12
3131
env:
32-
DEVELOPER_DIR: /Applications/Xcode_14.0.app/Contents/Developer
32+
DEVELOPER_DIR: /Applications/Xcode_13.4.app/Contents/Developer
3333
steps:
3434
- name: Checkout
3535
uses: actions/checkout@v2

0 commit comments

Comments
 (0)