Allow Symfony 8 #56
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: Static Analysis | |
| on: | |
| pull_request: | |
| branches: ['2.x', '1.x'] | |
| push: | |
| branches: ['2.x', '1.x'] | |
| jobs: | |
| phpstan: | |
| name: PHPStan (PHP ${{ matrix.php-version }}) | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| php-version: | |
| - '8.4' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: none | |
| php-version: ${{ matrix.php-version }} | |
| tools: cs2pr | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Install Composer dependencies for PHPStan | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| composer-options: '--working-dir=tools/phpstan' | |
| - name: Run PHPStan | |
| run: 'tools/phpstan/vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr' |