Skip to content

Bump mezzio/mezzio from 3.19.0 to 3.19.1 #748

Bump mezzio/mezzio from 3.19.0 to 3.19.1

Bump mezzio/mezzio from 3.19.0 to 3.19.1 #748

name: Coding standards
on:
push:
pull_request:
jobs:
coding-standards:
name: "Coding standards"
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "8.1"
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.composer/cache
vendor
key: php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
restore-keys: php-${{ matrix.php-version }}-
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run CS check
run: vendor/bin/phpcs