removing tvos. looks like tvos support was removed in an earlier version #32
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" | |
tags: | |
- "!*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Package | |
run: | | |
sudo xcode-select --switch $DEVELOPER_DIR | |
xcodebuild -scheme $SCHEME -destination $DESTINATION | xcpretty | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.app | |
SCHEME: RealityGeometries | |
DESTINATION: generic/platform=iOS | |
- name: lint | |
run: swiftlint |