local packages #34
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: Run Unit Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build_and_test: | |
name: Build and Test | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Initialise Submodule | |
run: git submodule init && git submodule update | |
- name: Select Xcode 15.1 | |
run: sudo xcode-select -s /Applications/Xcode_15.1.app/Contents/Developer | |
- name: Test | |
run: xcodebuild test -scheme "FeedRadarTests" -destination "platform=iOS Simulator,name=iPhone 14,OS=17.2" | xcbeautify |