Skip to content

[Feat] CI 파이프라인 구축 #1

[Feat] CI 파이프라인 구축

[Feat] CI 파이프라인 구축 #1

Workflow file for this run

name: BudgetBuddies Continous Integration
on:
push:
branches: [ "jayn2u" ]
pull_request:
branches: [ "develop" ]
jobs:
build-and-test:
name: 빌드 및 테스트
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Tuist
run: |
bash <(curl -Ls https://install.tuist.io)
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Clean tuist cache
run: tuist clean
- name: Install dependencies
run: tuist install
- name: Generate Xcode project
run: tuist generate
- name: Build
run: |
xcodebuild \
-workspace BudgetBuddies/BudgetBuddies.xcworkspace \
-scheme BudgetBuddies 'platform=iOS Simulator, OS=latest, name=iPhone 15 Pro' \
-configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO