[Refactor] CI 파이프라인 구축 #7
Workflow file for this run
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
name: Build BudgetBuddies | |
on: | |
pull_request: | |
branches: | |
- develop | |
push: | |
branches: | |
- qa | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: Move to .mise.toml file | |
run: cd BudgetBuddies | |
- name: Install tuist | |
run: mise use tuist@latest | |
- name: Install dependencies | |
run: mise x -- tuist install | |
- name: Build | |
run: mise x -- tuist build |