Add nikic/php-parser because rector and PHPStan depends on it, and it… #54
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: "build" | |
| on: | |
| push: ~ | |
| pull_request: ~ | |
| workflow_dispatch: ~ | |
| jobs: | |
| checks: | |
| name: "PHP ${{ matrix.php }} | SF ${{ matrix.symfony }}" | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: | |
| - "8.1" | |
| - "8.2" | |
| - "8.3" | |
| symfony: | |
| - "~5.4.0" | |
| - "~6.4.0" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v5" | |
| - name: "Setup PHP, with composer and extensions" | |
| uses: "shivammathur/setup-php@v2" | |
| with: | |
| php-version: "${{ matrix.php }}" | |
| coverage: "none" | |
| tools: "flex" | |
| - name: "Install composer dependencies" | |
| uses: "ramsey/composer-install@v3" | |
| env: | |
| SYMFONY_REQUIRE: "${{ matrix.symfony }}" | |
| - name: "Validate composer" | |
| run: "composer validate --strict" | |
| - name: "Check composer normalized" | |
| run: "composer normalize --dry-run" |