Skip to content

Commit 83dbd81

Browse files
committed
Xcode 16.3
1 parent 64d30af commit 83dbd81

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/build.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
xcode_16:
9+
xcode_16_3:
1010
runs-on: macos-15
1111
env:
12-
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
12+
DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
@@ -39,6 +39,20 @@ jobs:
3939
junit: result-swift-testing.xml
4040
coverage: .build/debug/codecov/FlyingFox.json
4141

42+
xcode_16_2:
43+
runs-on: macos-15
44+
env:
45+
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@v4
49+
- name: Version
50+
run: swift --version
51+
- name: Build
52+
run: swift build --build-tests
53+
- name: Test
54+
run: swift test --skip-build
55+
4256
xcode_15_4:
4357
runs-on: macos-14
4458
env:

0 commit comments

Comments
 (0)