From 7b9ac9277231d83804c3432f0fb6c7a8ac5f545a Mon Sep 17 00:00:00 2001 From: Dan Imhoff Date: Wed, 24 Jun 2020 16:26:54 -0700 Subject: [PATCH] chore(ci): test multiple xcode versions (#3154) --- .github/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5966c8475..ea71448c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,13 +52,18 @@ jobs: test-ios: runs-on: macos-latest timeout-minutes: 30 - defaults: - run: - working-directory: ./ios + strategy: + matrix: + xcode: + - /Applications/Xcode_11.6_beta.app + - /Applications/Xcode_11.5.app steps: + - run: sudo xcode-select --switch ${{ matrix.xcode }} - uses: actions/checkout@v2 - run: pod lib lint --allow-warnings Capacitor.podspec + working-directory: ./ios - run: pod lib lint --allow-warnings CapacitorCordova.podspec + working-directory: ./ios test-android: runs-on: ubuntu-latest timeout-minutes: 30