Merge pull request #4 from ski-u/run-swiftformat #52
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer | |
jobs: | |
test: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Show Xcode version | |
run: xcodebuild -version | |
- name: Run tests | |
run: | | |
xcodebuild \ | |
-project NASAClient.xcodeproj \ | |
-scheme NASAClient \ | |
-destination 'platform=iOS Simulator,name=iPhone 15' \ | |
-skipMacroValidation \ | |
test |