From 2c35a7b873666e6b4404e1c0c0df046e16613376 Mon Sep 17 00:00:00 2001 From: Abdullah Selek Date: Sat, 26 Mar 2022 16:13:50 +0000 Subject: [PATCH] Update CI config to support iOS 15.4 --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37343a0..7053746 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,18 @@ on: branches: [ master ] jobs: + iOS_15_4: + name: Xcode 13.2.1 + runs-on: macos-11 + env: + DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer + strategy: + matrix: + destination: ["OS=15.2,name=iPhone 13 Pro"] + steps: + - uses: actions/checkout@v2 + - name: iOS - ${{ matrix.destination }} + run: set -o pipefail && xcodebuild -workspace "Swifty360Player.xcworkspace" -scheme "Swifty360Player" -destination "${{ matrix.destination }}" clean test | xcpretty iOS_14_4: name: Xcode 12.4 runs-on: macos-10.15