Skip to content

Merge pull request #81 from lawmaestro/bugfix/placeholder-cut-off #24

Merge pull request #81 from lawmaestro/bugfix/placeholder-cut-off

Merge pull request #81 from lawmaestro/bugfix/placeholder-cut-off #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
xcode: "26.2"
destination: "platform=iOS Simulator,name=iPhone 17"
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
- name: Run Tests
run: |
xcodebuild test \
-scheme "Tests" \
-destination "${{ matrix.destination }}" \
-configuration Debug \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO