Skip to content

Initial Commit

Initial Commit #1

Workflow file for this run

name: linter
on:
push:
paths:
- '**.php'
branches:
- master
pull_request:
paths:
- '**.php'
branches:
- master
permissions:
contents: write
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install Dependencies
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run Pint
run: composer lint
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Fix code style
commit_options: '--no-verify'