Skip to content

Commit 6ab40c8

Browse files
authored
Merge pull request #64 from swhitty/xcode-15
Build on Xcode 15 beta
2 parents 4b925ad + 637d067 commit 6ab40c8

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,22 @@ jobs:
2626
with:
2727
files: ./coverage_report.lcov
2828

29+
xcode_15_0:
30+
runs-on: macos-13
31+
env:
32+
DEVELOPER_DIR: /Applications/Xcode_15.0.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
xcode_14_2:
30-
runs-on: macos-12
44+
runs-on: macos-13
3145
env:
3246
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
3347
steps:

0 commit comments

Comments
 (0)