This repository was archived by the owner on Feb 20, 2026. It is now read-only.
Bump phpunit/phpunit from 9.6.13 to 9.6.33 #105
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 CodeSniffer | |
| on: | |
| pull_request: | |
| branches: | |
| - trunk | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-versions: | |
| - 8.0 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| tools: composer | |
| php-version: ${{ matrix.php-versions }} | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate --strict | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v2 | |
| - name: PHPCS | |
| run: composer run-script phpcs |