Skip to content

Commit 867f706

Browse files
committed
ci: align github actions toolchain
1 parent d44aa68 commit 867f706

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,21 @@ jobs:
1212
build-and-test:
1313
name: Build and Test
1414
runs-on: macos-15
15+
env:
16+
DEVELOPER_DIR: /Applications/Xcode_26.3.0.app/Contents/Developer
1517

1618
steps:
1719
- name: Checkout
1820
uses: actions/checkout@v4
1921

22+
- name: Show Xcode Version
23+
run: xcodebuild -version
24+
2025
- name: Show Swift Version
2126
run: swift --version
2227

2328
- name: Build
24-
run: swift build
29+
run: swift build --enable-experimental-prebuilts
2530

2631
- name: Test
27-
run: swift test --no-parallel
32+
run: bash test.sh --enable-experimental-prebuilts

0 commit comments

Comments
 (0)