Use Xcode 15.0 #18
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: Test | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release | |
jobs: | |
test: | |
name: Test | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
destination: ["platform=iOS Simulator,OS=17.0,name=iPhone 15"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_15.0.0.app | |
- name: Build and test | |
run: xcodebuild clean test -project KIImagePager.xcodeproj -scheme KIImagePager -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO | |
env: | |
destination: ${{ matrix.destination }} |