Skip to content

Update ci.yml

Update ci.yml #64

Workflow file for this run

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 16.1
run: |
sudo xcode-select --switch /Applications/Xcode_16.1.app
- name: Build the app
run: |
xcodebuild -project LetsEatingTime_iOS.xcodeproj -scheme LetsEatingTime_iOS -sdk iphoneos -configuration Release clean build -allowProvisioningUpdates