Update dependency phpunit/phpunit to v12.5.8 - autoclosed #64
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 Unit Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| phpunit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' # Use PHP 8.3 | |
| extensions: mbstring, xml, curl | |
| coverage: none | |
| - name: Install Composer dependencies | |
| run: ./bin/composer install --prefer-dist --no-progress --no-suggest | |
| - name: Run PHPUnit | |
| run: ./vendor/bin/phpunit --bootstrap vendor/autoload.php tests |