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
25 changes: 19 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
workflow_dispatch:

jobs:
xcode_26_2:
xcode_26_6:
runs-on: macos-26
env:
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_26.6.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -27,10 +27,10 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage_report.lcov

xcode_26_1:
runs-on: macos-15
xcode_26_2:
runs-on: macos-26
env:
DEVELOPER_DIR: /Applications/Xcode_26.1.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -109,6 +109,19 @@ jobs:
- name: Test
run: swift test --skip-build

linux_swift_6_3:
runs-on: ubuntu-latest
container: swift:6.3
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

android:
runs-on: ubuntu-latest
timeout-minutes: 8
Expand All @@ -118,7 +131,7 @@ jobs:
- name: Build and Test
uses: skiptools/swift-android-action@v2
with:
swift-version: 6.2
swift-version: 6.3

windows:
runs-on: windows-latest
Expand Down
Loading