Bump CI and release runners to macos-15 #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| swift-build: | |
| runs-on: macos-15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode 16 | |
| run: | | |
| DEVELOPER_APP="$(find /Applications -maxdepth 1 -type d -name 'Xcode_16*.app' | sort | tail -n 1)" | |
| if [[ -z "${DEVELOPER_APP}" ]]; then | |
| echo "No Xcode 16 installation found on runner." >&2 | |
| exit 1 | |
| fi | |
| sudo xcode-select -s "${DEVELOPER_APP}/Contents/Developer" | |
| xcodebuild -version | |
| swift --version | |
| - name: Build | |
| run: swift build |