Skip to content

Feature | PHP 8.5 Support #123

Feature | PHP 8.5 Support

Feature | PHP 8.5 Support #123

Workflow file for this run

name: Code Style
on:
push:
branches:
- 'v1'
pull_request:
branches:
- '*'
permissions:
contents: write
concurrency:
group: ${{ github.head_ref || github.ref || github.run_id }}_php_cs_fixer
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Dependencies
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run PHP CS Fixer
run: ./vendor/bin/php-cs-fixer fix --allow-risky=yes
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 🪄 Code Style Fixes
commit_options: '--no-verify'