Skip to content

Bump phpunit/phpunit from 9.6.15 to 9.6.16 #127

Bump phpunit/phpunit from 9.6.15 to 9.6.16

Bump phpunit/phpunit from 9.6.15 to 9.6.16 #127

Workflow file for this run

name: Lint
on: pull_request
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.0' , '8.1', '8.2', '8.3']
include:
- php-versions: '8.3'
PHP_CS_FIXER_IGNORE_ENV: 1
name: php-cs check php${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer i
- name: Run coding standards check
env:
PHP_CS_FIXER_IGNORE_ENV: ${{ matrix.PHP_CS_FIXER_IGNORE_ENV }}
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )