Skip to content

Ignore .claude/ directory #11

Ignore .claude/ directory

Ignore .claude/ directory #11

Workflow file for this run

name: Fix Code Styling
on: [ push ]
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Run Pint
run: vendor/bin/pint
- name: Commit linted files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Fix code styling [ci skip]"