Remove support of Symfony 4.4 #168
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: Coding Standards | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: 8.2 | |
tools: php-cs-fixer | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run PHP-CS-Fixer | |
run: php-cs-fixer fix --ansi --verbose --diff --dry-run |