-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
68 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters