Skip to content

Merge pull request #705 from Aerendir/dependabot/composer/vendor-bin/… #1696

Merge pull request #705 from Aerendir/dependabot/composer/vendor-bin/…

Merge pull request #705 from Aerendir/dependabot/composer/vendor-bin/… #1696

Workflow file for this run

name: PHP CS Fixer
on: [ push ]
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
phpcs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ '8.2' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@2.30.4
with:
php-version: ${{ matrix.php }}
coverage: none # disable xdebug, pcov
extensions: ast
- name: Install Composer deps
uses: ramsey/composer-install@v3
with:
composer-options: --no-scripts
- name: Install Composer bin PHP CS Fixer
uses: ramsey/composer-install@v3
with:
working-directory: './vendor-bin/phpcs'
- name: Run PHP CS Fixer
run: |
./vendor-bin/phpcs/vendor/bin/php-cs-fixer fix --allow-risky yes --dry-run -v