Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 3 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading