Bump phpunit/phpunit from 12.4.5 to 12.5.4 #232
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: LeasingNinja in PHP – CI | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP with tools | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| tools: composer:v2 | |
| - name: Install dependencies | |
| run: composer install --no-interaction --no-ansi --no-progress | |
| - name: Run static analysis | |
| run: ./vendor/bin/phpstan analyze --no-interaction --no-ansi --no-progress | |
| - name: Test | |
| run: ./vendor/bin/phpunit --bootstrap vendor/autoload.php tests |