Skip to content

Repository maintenance, migrate tests #7

Repository maintenance, migrate tests

Repository maintenance, migrate tests #7

Workflow file for this run

name: Coding Styles
on: push
jobs:
tests:
name: Coding Styles
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php:
- "8.1"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Coding styles
run: composer run-script cs-lint