Skip to content

Drop php-cs-fixer and setup phpcs #2

Drop php-cs-fixer and setup phpcs

Drop php-cs-fixer and setup phpcs #2

Workflow file for this run

name: Check Linting
on: ["push", "pull_request"]
jobs:
build:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php:
- 8.3
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: php-cs-fixer
- run: php-cs-fixer fix --ansi --diff --show-progress=none --verbose