Skip to content

PHPUnit fixes

PHPUnit fixes #17

Workflow file for this run

name: PHP CS Fixer
on: [push, pull_request]
jobs:
php-cs-fixer:
name: PHP CS Fixer ${{ matrix.php-versions }}
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['8.3', '8.4']
container: "ghcr.io/php-cs-fixer/php-cs-fixer:3-php${{ matrix.php-versions }}"
steps:
- uses: actions/checkout@v3
- name: PHP-CS-Fixer
run: php-cs-fixer check --config .php-cs-fixer.dist.php --using-cache=no --allow-risky=yes || exit 1