2025-01-16 21:31:32 +01:00
|
|
|
|
|
|
|
name: Apply PHP CS Fixer
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
php-cs-fixer:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run PHP CS Fixer
|
2025-02-27 00:01:39 +00:00
|
|
|
uses: docker://oskarstark/php-cs-fixer-ga@sha256:0ad659f9f255b7dd2a697d9857ad59701f9a5da823d2ff6f20270c6297e49110
|
2025-01-16 21:31:32 +01:00
|
|
|
with:
|
|
|
|
args: --diff --dry-run
|
|
|
|
|