Update ios.yml #9
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: iOS Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '16.1.0' | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Tuist | |
run: | | |
brew tap tuist/tuist | |
brew install --formula tuist@4.16.1 | |
- name: Build iOS App | |
run: | | |
tuist build Example --generate |