Upgrade PHP Parser to v5 #1399
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: Code Quality | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 1.0 | |
| - 1.1 | |
| - 1.2 | |
| - develop | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| codeQuality: | |
| runs-on: ubuntu-latest | |
| name: PHP | |
| steps: | |
| - name: Checkout changes | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install PHP and PHP Code Sniffer | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| tools: phpcs | |
| coverage: none | |
| - name: Run code quality checks (on push) | |
| if: github.event_name == 'push' | |
| run: ./.github/workflows/utilities/phpcs-push ${{ github.sha }} | |
| - name: Run code quality checks (on pull request) | |
| if: github.event_name == 'pull_request' | |
| run: ./.github/workflows/utilities/phpcs-pr ${{ github.base_ref }} |