Skip to content

ref: docs and tests #49

ref: docs and tests

ref: docs and tests #49

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
name: Code Style
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.3', '8.4' ]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
- uses: actions/checkout@v4
- name: lint
run: composer app:cs