Update CI runner to macos-14 and run tests with Xcode 15. #40
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: Build | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- ".github/workflows/build.yml" | |
- "**.swift" | |
pull_request: | |
paths: | |
- ".github/workflows/build.yml" | |
- "**.swift" | |
concurrency: | |
group: build-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-macos: | |
name: Build macOS | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "15.0" | |
- name: Run tests | |
run: swift test -v | |
build-other-platforms: | |
runs-on: macos-14 | |
name: Build ${{ matrix.destination.name }} | |
strategy: | |
matrix: | |
destination: | |
- name: iOS | |
value: "platform=iOS Simulator,name=iPhone 14,OS=latest" | |
- name: tvOS | |
value: "platform=tvOS Simulator,name=Apple TV,OS=latest" | |
- name: watchOS | |
value: "platform=watchOS Simulator,name=Apple Watch Series 8 (41mm),OS=latest" | |
- name: Catalyst | |
value: "platform=macOS,variant=Mac Catalyst,arch=arm64" | |
# - name: visionOS | |
# value: "generic/platform=visionOS" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "15.0" | |
- name: Build | |
run: |- | |
set -o pipefail && NSUnbufferedIO=YES xcodebuild clean build \ | |
-scheme ColorToolbox \ | |
-destination '${{ matrix.destination.value }}' \ | |
| xcpretty | |
- name: Run tests | |
run: |- | |
set -o pipefail && NSUnbufferedIO=YES xcodebuild test \ | |
-scheme ColorToolbox \ | |
-destination '${{ matrix.destination.value }}' \ | |
-sdk iphonesimulator \ | |
| xcpretty |