From 25cb9008f4447fff78c08511d5bc16ad97f5189e Mon Sep 17 00:00:00 2001 From: Jiwoong CHOI Date: Mon, 26 Aug 2024 17:55:07 +0900 Subject: [PATCH] =?UTF-8?q?[Refactor]=20CI=20=ED=8C=8C=EC=9D=B4=ED=94=84?= =?UTF-8?q?=EB=9D=BC=EC=9D=B8=20=EA=B5=AC=EC=B6=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/BudgetBuddies.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/BudgetBuddies.yml diff --git a/.github/workflows/BudgetBuddies.yml b/.github/workflows/BudgetBuddies.yml new file mode 100644 index 0000000..7996f1d --- /dev/null +++ b/.github/workflows/BudgetBuddies.yml @@ -0,0 +1,27 @@ +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