Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ on:
workflow_dispatch:

jobs:
xcode-27-b4:
runs-on: xcode-27
timeout-minutes: 4
env:
DEVELOPER_DIR: /Applications/Xcode_27_beta_4.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Version
run: swift --version
- name: Build
run: swift build --build-tests
- name: Test
run: swift test --skip-build

xcode_26_6:
runs-on: macos-26
timeout-minutes: 4
Expand All @@ -17,7 +32,7 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift build --build-tests --enable-code-coverage
run: swift build --build-tests --enable-code-coverage
- name: Test
run: swift test --skip-build --enable-code-coverage --xunit-output result.xml
timeout-minutes: 1
Expand Down
Loading