feat: Update min required schema version to 3.2.0 #204
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: 'PHPCS' | |
| on: | |
| pull_request: | |
| jobs: | |
| phpcs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Composer install | |
| uses: php-actions/composer@v6 | |
| with: | |
| php_version: 7.4 | |
| php_extensions: zip mysqli | |
| args: --ignore-platform-reqs | |
| - name: Fix and Push phpcbf issues | |
| continue-on-error: true | |
| run: | | |
| vendor/bin/phpcbf ./ | |
| - name: Commit & Push changes | |
| uses: actions-js/push@master | |
| continue-on-error: true | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: ${{ github.head_ref }} | |
| - name: PHP Code Sniffer | |
| run: | | |
| vendor/bin/phpcs ./ -s |