Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork14
Merge pull request #228 from TheDragonCode/dependabot/github_actions/…#118
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:Tests | |
| on:[ push, pull_request ] | |
| jobs: | |
| build: | |
| runs-on:ubuntu-latest | |
| strategy: | |
| fail-fast:true | |
| matrix: | |
| php:[ "8.2", "8.3", "8.4" ] | |
| laravel:[ "11.0", "12.0" ] | |
| name:PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} | |
| steps: | |
| -name:Checkout code | |
| uses:actions/checkout@v5 | |
| -name:Setup PHP | |
| uses:shivammathur/setup-php@v2 | |
| with: | |
| php-version:${{ matrix.php }} | |
| extensions:curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv | |
| coverage:xdebug | |
| -name:Install dependencies | |
| run:composer require --dev laravel/framework:^${{ matrix.laravel }} | |
| -name:Execute tests | |
| run:sudo vendor/bin/phpunit |