Update dependency phpunit/phpunit to v13 #3692
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: CS | |
| on: [ push, pull_request ] | |
| jobs: | |
| coding-standards: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP, with composer and extensions | |
| uses: shivammathur/setup-php@2.37.0 | |
| with: | |
| php-version: 8.4 | |
| coverage: pcov | |
| tools: cs2pr | |
| - name: Cache composer dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.cache/composer | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: Install dependencies | |
| run: composer install --no-interaction | |
| - name: Code style with phpcs | |
| run: make cs |