Fixed watchOS build workflow #4
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: Fridge tvOS build | |
on: | |
push: | |
branches: [ main, development ] | |
pull_request: | |
branches: [ main, development ] | |
jobs: | |
tests-tvos: | |
runs-on: macos-latest | |
name: Destination -> tvOS | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Apple TV | |
run: xcodebuild clean test -scheme "Fridge" -destination "platform=tvOS Simulator,name=Apple TV" | |
- name: Apple TV 4k | |
run: xcodebuild clean test -scheme "Fridge" -destination "platform=tvOS Simulator,name=Apple TV 4k (2nd generation)" | |
- name: Apple TV 4k (at 1080p) | |
run: xcodebuild clean test -scheme "Fridge" -destination "platform=tvOS Simulator,name=Apple TV 4k (at 1080p) (2nd generation)" |