Skip to content

Set up Github action to run UITests (#4) #6

Set up Github action to run UITests (#4)

Set up Github action to run UITests (#4) #6

Workflow file for this run

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'