Fix an issue with vertical sizing introduced by the prev change #15
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build_ios: | |
name: Build iOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Prepare | |
run: gem install xcpretty | |
- name: Build | |
run: xcodebuild build -scheme 'MMMTestCase' -destination generic/platform=iOS | xcpretty | |
build_tvos: | |
name: Build tvOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Prepare | |
run: gem install xcpretty | |
- name: Build | |
run: xcodebuild build -scheme 'MMMTestCase' -destination generic/platform=tvOS | xcpretty |