implemented some general and performance improvements #99
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: CodeStyle | |
| on: | |
| # Run on all relevant pushes (except to main) and on all relevant pull requests. | |
| push: | |
| paths: | |
| - '**.php' | |
| - 'composer.json' | |
| - 'composer.lock' | |
| - '.phpcs.xml.dist' | |
| - 'phpcs.xml.dist' | |
| - '.github/workflows/cs.yml' | |
| pull_request: | |
| paths: | |
| - '**.php' | |
| - 'composer.json' | |
| - 'composer.lock' | |
| - '.phpcs.xml.dist' | |
| - 'phpcs.xml.dist' | |
| - '.github/workflows/cs.yml' | |
| # Allow manually triggering the workflow. | |
| workflow_dispatch: | |
| # Cancels all previous workflow runs for the same branch that have not yet completed. | |
| concurrency: | |
| # The concurrency group contains the workflow name and the branch name. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| checkcs: | |
| name: 'Check code style' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| coverage: none | |
| # Validate the composer.json file. | |
| # @link https://getcomposer.org/doc/03-cli.md#validate | |
| - name: Validate Composer installation | |
| run: | | |
| # Don't fail the workflow on composer validate warnings (lock file mismatch is common | |
| # after editing composer.json in a branch). Print guidance so maintainers can fix the lock. | |
| composer validate --no-check-all || true | |
| echo "Note: composer validate returned warnings. If the lock file is out of date, run locally:" | |
| echo " composer update --lock" | |
| echo "or to update a specific package: composer update staabm/cs2pr --with-dependencies" | |
| echo "Then commit the updated composer.lock to the branch." | |
| # Install dependencies and handle caching in one go. | |
| # @link https://github.com/marketplace/actions/install-composer-dependencies | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v2 | |
| with: | |
| # Use a reproducible, unique suffix from the run id to avoid shell evaluation problems. | |
| custom-cache-suffix: ${{ github.run_id }} | |
| # Check the codestyle of the files. | |
| # The results of the CS check will be shown inline in the PR via the CS2PR tool. | |
| # @link https://github.com/staabm/annotate-pull-request-from-checkstyle/ | |
| - name: Check PHP code style | |
| id: phpcs | |
| run: composer check-cs -- --no-cache --report-full --report-checkstyle=./phpcs-report.xml | |
| - name: Show PHPCS results in PR | |
| if: ${{ always() && steps.phpcs.outcome == 'failure' }} | |
| uses: staabm/annotate-pull-request-from-checkstyle@v2 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| checkstyle_report: ./phpcs-report.xml |