Bump version to 0.15 (#58) #151
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: Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test_ipad: | |
name: Test-iPad | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Force Xcode 15.4 | |
run: sudo xcode-select -switch /Applications/Xcode_15.4.app | |
- name: Make project | |
run: make generate | |
- name: Run tests | |
run: make test-iPad | |
test_iphone: | |
name: Test-iPhone | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Force Xcode 15.4 | |
run: sudo xcode-select -switch /Applications/Xcode_15.4.app | |
- name: Make project | |
run: make generate | |
- name: Run tests | |
run: make test-iPhone | |
test_iphone_ios15: | |
name: Test-iPhone-iOS15 | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Force Xcode 13.1 | |
run: sudo xcode-select -switch /Applications/Xcode_13.1.app | |
- name: Make project | |
run: make generate | |
- name: Run tests | |
run: make test-iPhone-iOS15 | |