Update ci.yml #58
This file contains hidden or 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: iOS CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v3 | |
| - name: Set up Xcode | |
| run: sudo xcode-select -s /Applications/Xcode.app | |
| - name: Build and run tests | |
| run: | | |
| xcodebuild clean test \ | |
| -project LetsEatingTime_iOS.xcodeproj \ | |
| -scheme LetsEatingTime_iOSUITests \ | |
| -sdk iphonesimulator \ | |
| -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5' \ | |
| ONLY_ACTIVE_ARCH=YES |