Skip to content

Feature/public checklists (#4) #74

Feature/public checklists (#4)

Feature/public checklists (#4) #74

Workflow file for this run

name: Fix Code Style
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3]
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: Install Pint
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Running with Lint Config
run: cat pint.json
- name: Run Pint
run: ./vendor/bin/pint --config pint.json
- name: Commit linted files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Fixes coding style"