Skip to content

Merge pull request #40 from nunomaduro/patch-1 #50

Merge pull request #40 from nunomaduro/patch-1

Merge pull request #40 from nunomaduro/patch-1 #50

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.3"
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install Pint
run: composer global require laravel/pint
- name: Run Pint
run: pint
- name: Commit linted files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Fix code styling [ci skip]"