Skip to content

[CI] iOS CI 시뮬레이터 부분 수정 #13

[CI] iOS CI 시뮬레이터 부분 수정

[CI] iOS CI 시뮬레이터 부분 수정 #13

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: iOS CI
on:
push:
branches: ["develop"]
pull_request:
branches: ["develop"]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.3"
- name: Build (Dev compile-only)
run: |
xcodebuild \
-project Atcha-iOS.xcodeproj \
-scheme Atcha-iOS \
-configuration Debug \
-sdk iphonesimulator \
-destination 'generic/platform=iOS Simulator' \
clean build