Bump Xcode version to 15.2 #32
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: macOS-14 | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
xcode: | |
- 15.2 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode ${{ matrix.xcode }} | |
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
- name: Run test | |
run: | | |
xcodebuild test -scheme CustomRepeatDate -destination platform="iOS Simulator,name=iPhone 14 Pro" |