Add support for Symfony 7.0 #6
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: Test | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, edited, reopened] | |
jobs: | |
test: | |
name: PHP ${{ matrix.php-version }} + Symfony ${{ matrix.symfony-version }} | |
runs-on: ubuntu-20.04 | |
continue-on-error: false | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
symfony-version: | |
- '4.4.*' | |
- '5.4.*' | |
- '6.0.*' | |
exclude: | |
- php-version: '7.4' | |
symfony-version: '6.0.*' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
ini-values: "memory_limit=-1" | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2 | |
- name: Validate composer.json | |
run: composer validate --no-check-lock | |
- name: Configure Symfony CssSelector | |
run: composer require --no-update "symfony/css-selector:${{ matrix.symfony-version }}" | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Install Simple PHPUnit | |
run: vendor/bin/simple-phpunit install | |
- name: Run PHPUnit | |
run: vendor/bin/simple-phpunit -v |