Skip to content

Feat/android port

Feat/android port #6

Workflow file for this run

name: Build iOS
on:
push:
branches: [main]
paths:
- "muse/**"
- ".github/workflows/build-ios.yml"
pull_request:
paths:
- "muse/**"
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
working-directory: muse
run: |
xcodebuild build \
-project muse.xcodeproj \
-scheme muse \
-destination 'generic/platform=iOS Simulator' \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
| xcpretty