ci: For the action to use macos 14 #5
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 for Xcode Project | |
on: | |
# This workflow runs on every push and pull request to the main branch | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Build and Test | |
run: | | |
ls /Applications/Xcode* | |
sudo xcode-select --switch /Applications/Xcode_15.3.app/Contents/Developer | |
# Download the dependencies | |
xcodebuild -resolvePackageDependencies -project TypeReader.xcodeproj | |
# Build the project and run the tests | |
xcodebuild \ | |
-project TypeReader.xcodeproj \ | |
-scheme TypeReader \ | |
-sdk iphonesimulator \ | |
-destination 'platform=iOS Simulator,name=iPhone 15,OS=17.4' \ | |
clean test | |
# This will fail the job if any test fails | |
continue-on-error: false | |