From ebb6cea45da7e3862d65af417421174b78f362fa Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Sat, 14 Oct 2023 08:31:12 -0400 Subject: [PATCH] remove ios from CI --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3d5e1a..53db73f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,18 +20,12 @@ jobs: test: name: Test runs-on: macOS-13 - strategy: - matrix: - destination: - - "platform=macOS" - - "platform=iOS Simulator,name=iPhone 12" - steps: - uses: actions/checkout@v4 - name: Install XCBeautify run: brew install xcbeautify - name: Test platform ${{ matrix.destination }} - run: set -o pipefail && xcodebuild -scheme XCLint-Package -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions + run: set -o pipefail && xcodebuild -scheme XCLint-Package -destination "platform=macOS" test | xcbeautify --renderer github-actions linux_test: name: Test Linux