feat: localizacion de ajustes/modos de agilidad y mejoras de UX en Se… #50
Workflow file for this run
This file contains hidden or 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: PR Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - 'dev/**' | |
| - 'feat/**' | |
| push: | |
| branches: | |
| - main | |
| - 'feat/**' | |
| jobs: | |
| check: | |
| name: Build and Test | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode Version | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.app | |
| - name: Cache Tuist and Dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.tuist | |
| Tuist/Dependencies | |
| key: ${{ runner.os }}-tuist-v2-${{ hashFiles('.tuist-version', 'Tuist/Package.swift', 'Project.swift') }} | |
| restore-keys: | | |
| ${{ runner.os }}-tuist-v2- | |
| - name: Setup Dependencies | |
| run: make setup | |
| - name: Generate Project | |
| run: make generate | |
| - name: Lint | |
| run: make lint | |
| - name: Build and Check Errors | |
| run: make check-errors DESTINATION="platform=iOS Simulator,name=iPhone 17 Pro" | |
| - name: Run Tests | |
| run: make test |