Bump symfony/console from 7.3.4 to 7.3.5 #276
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: php-cs-fixer | |
| on: push | |
| jobs: | |
| php_cs_fixer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP with tools | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' | |
| tools: composer, cs2pr | |
| coverage: none | |
| - name: Composer Install | |
| run: composer install | |
| - name: Run php-cs-fixer | |
| run: composer cs -- --format=checkstyle | cs2pr |