silencing non-exhaustive switch warning #296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
validate_spec: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v1 | |
- name: Validate podspec | |
run: pod lib lint | |
build_xcode14: | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
run-config: | |
- { xcode_version: '14.1', simulator: 'name=iPad Pro (12.9-inch) (5th generation),OS=16.1' } | |
- { xcode_version: '14.1', simulator: 'name=iPhone SE (2nd generation),OS=16.1' } | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v1 | |
- name: Brew Update | |
run: brew update | |
- name: Install Bundler | |
run: gem install bundler | |
- name: Install Core Utils | |
run: if [ -z "$(brew ls --versions coreutils)" ] ; then brew install coreutils ; fi | |
- name: Install XCPretty | |
run: gem install xcpretty --no-document --quiet | |
- name: Show Xcode versions | |
run: ls -al /Applications/Xcode* | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.run-config['xcode_version'] }}.app | |
- name: Current Xcode Selected | |
run: xcode-select -p | |
- name: List Simulators | |
run: xcrun simctl list | |
- name: Build & Test | |
run: ./scripts/ci.sh "${{ matrix.run-config['simulator'] }}" | |
build: | |
runs-on: macos-11 | |
strategy: | |
matrix: | |
run-config: | |
- { xcode_version: '13.0', simulator: 'name=iPhone SE (2nd generation),OS=15.0' } | |
- { xcode_version: '13.0', simulator: 'name=iPad Pro (12.9-inch) (5th generation),OS=15.0' } | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v1 | |
- name: Brew Update | |
run: brew update | |
- name: Install Bundler | |
run: gem install bundler | |
- name: Install Core Utils | |
run: if [ -z "$(brew ls --versions coreutils)" ] ; then brew install coreutils ; fi | |
- name: Install XCPretty | |
run: gem install xcpretty --no-document --quiet | |
- name: Show Xcode versions | |
run: ls -al /Applications/Xcode* | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.run-config['xcode_version'] }}.app | |
- name: Current Xcode Selected | |
run: xcode-select -p | |
- name: List Simulators | |
run: xcrun simctl list | |
- name: Build & Test | |
run: ./scripts/ci.sh "${{ matrix.run-config['simulator'] }}" |