Skip to content

Bump symfony/process from 6.3.0 to 6.4.14 #27

Bump symfony/process from 6.3.0 to 6.4.14

Bump symfony/process from 6.3.0 to 6.4.14 #27

Workflow file for this run

name: CI workflow
on: push
jobs:
php-cs-fixer:
runs-on: ubuntu-22.04
strategy:
matrix:
php: ['8.1', '8.2']
name: Check coding standard
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: php-cs-fixer
- name: Install dependencies
run: composer install
- name: Check coding standard
run: php-cs-fixer fix --dry-run --diff