Fix the kernel shutdown with new versions of Symfony #247
Workflow file for this run
This file contains 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: Tests | |
on: [ pull_request ] | |
jobs: | |
tests: | |
name: PHPUnit PHP ${{ matrix.php }} ${{ matrix.dependency }} (Symfony ${{ matrix.symfony }}) | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
php: | |
- '7.2' | |
- '7.3' | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
dependency: | |
- '' | |
- 'lowest' | |
symfony: | |
- '5.4.*' | |
- '6.0.*' | |
- '6.1.*' | |
- '6.2.*' | |
- '6.3.*' | |
- '6.4.*' | |
- '7.0.*' | |
exclude: | |
- php: '7.2' | |
symfony: '6.0.*' | |
- php: '7.2' | |
symfony: '6.1.*' | |
- php: '7.2' | |
symfony: '6.2.*' | |
- php: '7.2' | |
symfony: '6.3.*' | |
- php: '7.2' | |
symfony: '6.4.*' | |
- php: '7.2' | |
symfony: '7.0.*' | |
- php: '7.3' | |
symfony: '6.0.*' | |
- php: '7.3' | |
symfony: '6.1.*' | |
- php: '7.3' | |
symfony: '6.2.*' | |
- php: '7.3' | |
symfony: '6.3.*' | |
- php: '7.3' | |
symfony: '6.4.*' | |
- php: '7.3' | |
symfony: '7.0.*' | |
- php: '7.4' | |
symfony: '6.0.*' | |
- php: '7.4' | |
symfony: '6.1.*' | |
- php: '7.4' | |
symfony: '6.2.*' | |
- php: '7.4' | |
symfony: '6.3.*' | |
- php: '7.4' | |
symfony: '6.4.*' | |
- php: '7.4' | |
symfony: '7.0.*' | |
- php: '8.0' | |
symfony: '6.1.*' | |
- php: '8.0' | |
symfony: '6.2.*' | |
- php: '8.0' | |
symfony: '6.3.*' | |
- php: '8.0' | |
symfony: '6.4.*' | |
- php: '8.0' | |
symfony: '7.0.*' | |
- php: '8.1' | |
symfony: '7.0.*' | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: pcov | |
tools: flex | |
- name: Configure Symfony | |
run: composer config extra.symfony.require "${{ matrix.symfony }}" | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ matrix.php }}-composer- | |
- name: Update project dependencies | |
if: matrix.dependency == '' | |
run: composer update --no-progress --ansi --prefer-stable | |
- name: Update project dependencies lowest | |
if: matrix.dependency == 'lowest' | |
run: composer update --no-progress --ansi --prefer-stable --prefer-lowest | |
- name: Validate composer | |
run: composer validate --strict --no-check-lock | |
- name: Run tests | |
run: vendor/bin/phpunit |