From e1aa69181ab550658fab94fce0ef85b47138191e Mon Sep 17 00:00:00 2001 From: Martin Dufort Date: Thu, 28 Dec 2023 12:42:40 -0500 Subject: [PATCH] Update ci to support Mac Catalyst --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9db9476..810f31d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: ContinuousIntegration +name: CI on: push: @@ -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