Added additional PlaybackQuality value that occurs for some videos #47
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 Example Project | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "Example/**" | |
- "Sources/**" | |
pull_request: | |
paths: | |
- "Example/**" | |
- "Sources/**" | |
jobs: | |
build: | |
name: Build example project | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build | |
run: xcodebuild build -project Example/Example.xcodeproj -scheme Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' |