Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): test multiple xcode versions in CI #3154

Merged
merged 6 commits into from
Jun 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down