Add support for alternatiwe image formats like webp and avif #798
Workflow file for this run
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - 1.x | |
| - 2.x | |
| jobs: | |
| php-cs-fixer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.0 | |
| coverage: none | |
| tools: php-cs-fixer | |
| - name: Run PHP-CS-Fixer | |
| run: php-cs-fixer fix --dry-run --diff |