Skip to content

Initial commit

Initial commit #3

Workflow file for this run

name: Lint
on:
push:
paths:
- '**.php'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
- name: Install dependencies
run: composer install --no-ansi --no-interaction --no-progress --prefer-dist
- name: Lint
run: composer run-script lint