Skip to content

NC29 fixes

NC29 fixes #298

Workflow file for this run

name: CS-Fix
on:
pull_request:
jobs:
php-cs-fixer:
name: php-cs-fixer
runs-on: ubuntu-20.04
strategy:
matrix:
php-versions: ['8.1']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer i
- name: Run coding standard formatter
run: composer run cs:fix
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply php-cs-fixer changes