Skip to content

Replace conditional check with betafeatures #3

Replace conditional check with betafeatures

Replace conditional check with betafeatures #3

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: macos-latest
```

Check failure on line 12 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
steps:
- name: checkout
uses: actions/checkout@v4
- name: select xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: show xcode version
run: xcodebuild -version
- name: build
run: |
xcodebuild \
-project tree/main/lara.xcodeproj \
-scheme lara \
-configuration Debug \
-sdk iphonesimulator \
CODE_SIGNING_ALLOWED=NO \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY="" \
build
```