Update CI to macOS 14 / Xcode 15.3 / iOS 17.4 #57
Workflow file for this run
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-macOS | |
# Controls when the action will run. | |
# Triggers the workflow on pull request events but only for the master branch. | |
on: | |
pull_request: | |
branches: [ master ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build-and-test" | |
build-and-test: | |
# The type of runner that the job will run on | |
runs-on: macos-14 | |
timeout-minutes: 8 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_15.3.app | |
- name: Xcode version | |
run: /usr/bin/xcodebuild -version | |
- name: Build and Test | |
run: xcodebuild clean build test -project EssentialFeed/EssentialFeed.xcodeproj -scheme "CI_macOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk macosx -destination "platform=macOS" ONLY_ACTIVE_ARCH=YES |