Skip to content

Update symfony/phpunit-bridge requirement from ^5.2 || ^6.2 to ^5.2 || ^6.2 || ^7.0 #68

Update symfony/phpunit-bridge requirement from ^5.2 || ^6.2 to ^5.2 || ^6.2 || ^7.0

Update symfony/phpunit-bridge requirement from ^5.2 || ^6.2 to ^5.2 || ^6.2 || ^7.0 #68

Workflow file for this run

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