xcode 16.0 beta is removed (but why?) #30
This file contains 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: check-pr | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Select Xcode version | |
run: sudo xcode-select -s '/Applications/Xcode_16.1_beta.app/Contents/Developer' | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Build | |
run: swift build | |
- name: Test | |
run: swift test |