Skip to content

Maintenance: GitHub actions, PHP CS Fixer & PHPStan #49

Maintenance: GitHub actions, PHP CS Fixer & PHPStan

Maintenance: GitHub actions, PHP CS Fixer & PHPStan #49

name: Coding Standards
on:
pull_request:
branches: ['2.x', '1.x']
push:
branches: ['2.x', '1.x']
jobs:
php-cs-fixer:
name: PHP CS Fixer (PHP ${{ matrix.php-version }})
runs-on: ubuntu-24.04
strategy:
matrix:
php-version:
- '8.4'
steps:
- name: Checkout code
uses: actions/checkout@v5
- 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@v3
with:
composer-options: '--working-dir=tools/php-cs-fixer'
- name: Run PHP CS Fixer
run: 'tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle | cs2pr'