Add explicit catalyst support in the package #35
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 | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
- 'CODE_OF_CONDUCT.md' | |
- '.editorconfig' | |
- '.spi.yml' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: macOS-13 | |
strategy: | |
matrix: | |
destination: | |
- "platform=macOS" | |
- "platform=macOS,variant=Mac Catalyst" | |
- "platform=iOS Simulator,name=iPhone 11" | |
- "platform=tvOS Simulator,name=Apple TV" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test platform ${{ matrix.destination }} | |
run: set -o pipefail && xcodebuild -scheme NSUI -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions |