Document relation label resolution in builder README #10332
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: PHPStan | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main, "feature/**"] | |
| jobs: | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.5 | |
| tools: composer | |
| - name: Bootstrap Laravel App | |
| run: | | |
| php dev.php --db=sqlite | |
| mkdir -p storage/app storage/framework storage/logs | |
| touch storage/.gitkeep | |
| - name: Composer dump-autoload | |
| run: composer dump-autoload -o -vvv | |
| - name: Fix bin permissions | |
| run: chmod +x vendor/bin/phpstan || true | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan analyse --memory-limit=512M |