Skip to content

Merge pull request #2 from warhuhn/bugfix-failing-with-value-indices #9

Merge pull request #2 from warhuhn/bugfix-failing-with-value-indices

Merge pull request #2 from warhuhn/bugfix-failing-with-value-indices #9

Workflow file for this run

name: Check code style
on: [ push ]
jobs:
quality:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.2 ]
name: CS PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install
run: composer install --no-interaction
- name: Code style checks for PHP
run: composer cs