From 8c16a7b8076ff3b9cff50aae97ba0b3ef6c45019 Mon Sep 17 00:00:00 2001 From: Suyeol Jeon Date: Mon, 19 Jan 2026 00:48:13 +0900 Subject: [PATCH] Simplify CI workflow to use tuist test command --- .github/workflows/ci.yml | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bf4eea..3483404 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,33 +8,12 @@ on: jobs: test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - include: - - os: macos-latest - xcode: "26.2" - destination: "platform=iOS Simulator,name=iPhone 17" - + runs-on: macos-latest steps: - uses: actions/checkout@v4 - - name: Select Xcode - run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - - name: Install Tuist - run: | - brew tap tuist/tuist - brew install --formula tuist - - - name: Generate Project - run: tuist generate --no-open + run: brew install tuist - name: Run Tests - run: | - xcodebuild test \ - -scheme "Tests" \ - -destination "${{ matrix.destination }}" \ - -configuration Debug \ - CODE_SIGN_IDENTITY="" \ - CODE_SIGNING_REQUIRED=NO + run: tuist test