Release v2.14.1 #510
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 Code Sniffer | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| extensions: imagick, intl, mysql, bcmath, openssl | |
| ini-values: post_max_size=256M, short_open_tag=On | |
| tools: pecl, cs2pr, phpcs | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate | |
| - name: Install PHP dependencies | |
| run: composer install --prefer-dist --no-progress --no-suggest | |
| # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" | |
| # Docs: https://getcomposer.org/doc/articles/scripts.md | |
| # We need to run to validate only files' changes. | |
| - name: Get changed files using a comma separator | |
| id: changed-files-comma | |
| uses: tj-actions/changed-files@v46 | |
| with: | |
| separator: " " | |
| files: | | |
| .(php)$ | |
| path: src | |
| - name: List changed files | |
| if: steps.changed-files-comma.outputs.any_changed == 'true' | |
| run: | | |
| echo ${{ steps.changed-files-comma.outputs.all_changed_files }} | |
| - name: Run phpcs | |
| if: steps.changed-files-comma.outputs.any_changed == 'true' | |
| run: phpcs -q --report=checkstyle --ignore=*/migrations/* ${{ steps.changed-files-comma.outputs.all_changed_files }} | cs2pr | |
| - name: Run tests | |
| if: steps.changed-files-comma.outputs.any_changed == 'true' | |
| run: ./vendor/bin/phpunit |