Skip to content

Add Symfony 7 support ; drop Symfony < 5.4 support and PHP < 8 support #41

Add Symfony 7 support ; drop Symfony < 5.4 support and PHP < 8 support

Add Symfony 7 support ; drop Symfony < 5.4 support and PHP < 8 support #41

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-20.04
strategy:
matrix:
php-version:
- 8.0
- 8.1
- 8.2
- 8.3
dependencies: [highest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
tools: composer:v2
extensions: zip
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: --prefer-dist
- name: Run Tests
run: vendor/bin/simple-phpunit