Update macOS runner #36
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: | |
- "*" | |
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@v3 | |
- 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" | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Inspect versions | |
run: | | |
system_profiler SPSoftwareDataType | |
swift --version | |
xcodebuild -version | |
- uses: actions/checkout@v3 | |
- 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 |