Skip to content

chore: Switch CI to Xcode 16 on macOS 15 #91

chore: Switch CI to Xcode 16 on macOS 15

chore: Switch CI to Xcode 16 on macOS 15 #91

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
test-xcode:
runs-on: macos-12
strategy:
matrix:
xcode:
- 16.2
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v --enable-test-discovery