Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Update ci to support Mac Catalyst
Browse files Browse the repository at this point in the history
  • Loading branch information
martindufort committed Dec 28, 2023
1 parent 42c52ef commit e1aa691
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ContinuousIntegration
name: CI

on:
push:
Expand All @@ -23,12 +23,12 @@ jobs:
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: Install XCBeautify
run: brew install xcbeautify
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -scheme NSUI -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions
run: set -o pipefail && xcodebuild -scheme default -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions

0 comments on commit e1aa691

Please sign in to comment.