Skip to content

Drop Symfony 5.4 and PHP 8.1 #81

Drop Symfony 5.4 and PHP 8.1

Drop Symfony 5.4 and PHP 8.1 #81

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
symfony-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [8.2, 8.3]
steps:
- uses: actions/checkout@v4
- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl, pdo_sqlite
coverage: none
- name: Install dependencies
run: |
composer install --prefer-dist --no-progress --no-suggest
- name: Run tests
run: |
./vendor/bin/phpunit
- name: Run PHPStan
run: vendor/bin/phpstan analyse src