Removed deprecations for PHP 8.4 #113
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: CI | |
| on: | |
| push: | |
| branches: ['master'] | |
| pull_request: | |
| branches: ['*'] | |
| jobs: | |
| php-tests: | |
| name: Tests - PHP ${{ matrix.php }} with Symfony ${{ matrix.sf_version }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| strategy: | |
| max-parallel: 10 | |
| fail-fast: false | |
| matrix: | |
| php: ['8.2', '8.3'] | |
| sf_version: ['7.0.*'] | |
| include: | |
| - php: '8.0' | |
| sf_version: '5.4.*' | |
| - php: '8.1' | |
| sf_version: '6.4.*' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| tools: composer:v2, flex | |
| coverage: none | |
| ini-values: expose_php=1 | |
| - name: Install dependencies | |
| run: 'composer update --no-interaction --prefer-dist --no-progress' | |
| env: | |
| SYMFONY_REQUIRE: ${{ matrix.sf_version }} | |
| - name: Execute Unit Tests | |
| run: 'vendor/bin/phpunit' |