Set up Github action to run UITests (#4) #6
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: UITests | |
on: [push] | |
jobs: | |
run_tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install protobuf | |
run: brew install protobuf swift-protobuf | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_15.4.app && /usr/bin/xcodebuild -version | |
- name: Run tests | |
run: xcodebuild test -scheme SatHunter -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5' | |