Update symfony/css-selector requirement from ^3.4|^4.4|^5.4|^6.0 to ^3.4|^4.4|^5.4|^6.0|^7.0 #71
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: Unit Tests | |
on: [pull_request] | |
jobs: | |
phpunit: | |
name: PHP ${{ matrix.php-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: none | |
- name: Remove PHPStan as a dependency | |
run: composer remove --dev phpstan/phpstan | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run test suite | |
run: composer test |