Skip to content

Add CS Fixer to CI workflow, update composer.json #89

Add CS Fixer to CI workflow, update composer.json

Add CS Fixer to CI workflow, update composer.json #89

Workflow file for this run

name: Continous Integration
on:
push:
branches:
- mautic5-support
- '[0-9]+\-[0-9]+\-x'
pull_request:
jobs:
integration:
name: Integration tests
runs-on: ubuntu-20.04
strategy:
matrix:
php-version: [ 8.1 ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP Environment
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install composer requirements.
run: composer install
- name: Check PHP CS
run: ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --dry-run --using-cache no --show-progress dots -v