Update ci.yml #62
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: | |
| name: Build the app | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v2 | |
| - name: Set up Xcode | |
| uses: actions/setup-xcode@v2 | |
| with: | |
| xcode-version: '16.1' | |
| - name: Build the app | |
| run: | | |
| xcodebuild -project LetsEatingTime_iOS.xcodeproj -scheme LetsEatingTime_iOS -sdk iphoneos -configuration Release clean build |