Skip to content

Update ios.yml

Update ios.yml #6

Workflow file for this run

name: iOS Build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.1.0'
steps:

Check failure on line 16 in .github/workflows/ios.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ios.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Tuist
run: |
brew tap tuist/tuist
brew install --formula [email protected]
- name: Verify Tuist installation
run: |
tuist --help
- name: Generate Project with Tuist
run: |
tuist install
tuist generate
- name: Select Xcode version
run: sudo xcode-select -switch /Applications/Xcode.app
- name: Build iOS App
run: |
xcodebuild build \
-workspace ModernCleanArchtecture.xcworkspace \
-scheme Example \
-configuration Debug \
-destination 'platform=iOS Simulator,name=iPhone 15,OS=latest'