chore(deps-dev): bump friendsofphp/php-cs-fixer from 3.27.0 to 3.28.0 #581
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Standards | |
on: | |
push: | |
branches: [dev, production] | |
tags: | |
- '*.*.*' | |
pull_request: | |
branches: [dev, production] | |
jobs: | |
src: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [8.1] | |
os: [ubuntu-20.04] | |
name: Source code on PHP ${{ matrix.php }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cache composer packages | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ matrix.php }}-php-${{ hashFiles('**/composer.lock') }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer | |
coverage: pcov | |
- name: Install dependencies | |
run: | | |
export PATH="$HOME/.composer/vendor/bin:$PATH" | |
composer install --prefer-dist --no-interaction --no-progress | |
- name: Execute style checking | |
run: composer standards |