Skip to content

Drop support for Symfony < 6.4 & add support for Symfony 7 (#24) #62

Drop support for Symfony < 6.4 & add support for Symfony 7 (#24)

Drop support for Symfony < 6.4 & add support for Symfony 7 (#24) #62

name: Coding Standards
on:
pull_request:
branches: ['5.x', '4.x', '3.x']
push:
branches: ['5.x', '4.x', '3.x']
jobs:
php-cs-fixer:
name: PHP CS Fixer (PHP ${{ matrix.php-version }})
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '8.3'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: cs2pr
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
- name: Run PHP CS Fixer
run: 'vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle | cs2pr'