From b8f60c0d5a845086c8372c262bdd3d94ea279cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kodes=CC=8C?= Date: Wed, 17 Jan 2024 17:38:57 +0100 Subject: [PATCH] [feat]: Fix macOS versions --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ab3d080..1d218292 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,9 +26,9 @@ jobs: - name: 'MacOS 13, Xcode 15.1, Swift 5.9.0' xcode: 'Xcode_15.1' runsOn: 'macos-13' - - name: 'MacOS 12, Xcode 14.3.1, Swift 5.8.0' + - name: 'MacOS 13, Xcode 14.3.1, Swift 5.8.0' xcode: 'Xcode_14.3.1' - runsOn: 'macos-12' + runsOn: 'macos-13' steps: - uses: actions/checkout@v4 @@ -52,9 +52,12 @@ jobs: - name: 'iOS 16.4' destination: 'OS=16.4,name=iPhone 14 Pro' xcode: 'Xcode_14.3.1' - runsOn: macos-12 + runsOn: macos-13 steps: - uses: actions/checkout@v4 - name: ${{ matrix.name }} - run: set -o pipefail && xcodebuild -scheme "Networking" -destination "${{ matrix.destination }}" clean test 2>&1 | xcpretty + run: | + set -o pipefail && \ + xcodebuild -skipPackagePluginValidation -scheme "Networking" -destination "${{ matrix.destination }}" clean test | xcpretty +