Skip to content

refresh

refresh #68

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 (without signing)
run: |
xcodebuild -project LetsEatingTime_iOS.xcodeproj -scheme LetsEatingTime_iOS -sdk iphonesimulator -configuration Release clean build CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" PROVISIONING_PROFILE_SPECIFIER=""