Skip to content

merging.

merging. #1

Workflow file for this run

name: iOS
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build InterlinedList
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
xcodebuild build \
-scheme InterlinedList \
-project InterlinedList.xcodeproj \
-destination "platform=iOS Simulator,name=iPhone 16,OS=latest" \
-configuration Debug \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO