laravel/pint Github Action

Require installing Pint composer global require laravel/pint

and then running against staging.. this will likely break all of the existing PRs but would be good to be done sooner than later
pull/5685/head
Shlee 3 weeks ago committed by GitHub
parent f2f2dc7a4f
commit 482c942cc2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,27 @@
name: Laravel pint
on:
push:
pull_request:
jobs:
pint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.4]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Run Pint
run: pint --test
Loading…
Cancel
Save