Skip to content

Update to PHP 8.2+, modernize CI and test setup #73

Update to PHP 8.2+, modernize CI and test setup

Update to PHP 8.2+, modernize CI and test setup #73

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 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]"