Bump symfony/cache from 7.4.5 to 7.4.13 #56
This file contains hidden or 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 coding standards | |
| on: [push, pull_request] | |
| jobs: | |
| php-cs-fixer: | |
| name: Check coding standards | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: "none" | |
| ini-values: memory_limit=-1,apc.enable_cli=1,zend.assertions=1 | |
| php-version: "8.2" | |
| tools: flex | |
| - name: Install dependencies | |
| run: composer install | |
| - name: PHP CS Fixer | |
| run: vendor/bin/php-cs-fixer --allow-risky=yes --config=.php-cs-fixer.php --verbose fix --dry-run --diff |