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-02 00:07:40 +00:00
|
|
|
uses: docker://oskarstark/php-cs-fixer-ga@sha256:de1bdcbe1e4f5712cde62a87821606da9fce4b67cc45499516b0e074ed4d2feb
|
2025-01-16 21:31:32 +01:00
|
|
|
with:
|
|
|
|
args: --diff --dry-run
|
|
|
|
|