Support intervention/image v4 and drop v3 #11
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: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php: [ 8.5, 8.4, 8.3 ] | |
| laravel: [ 13.*, 12.*, 11.*, 10.* ] | |
| stability: [ prefer-stable ] | |
| include: | |
| - laravel: 13.* | |
| testbench: 11.* | |
| - laravel: 12.* | |
| testbench: 10.* | |
| - laravel: 11.* | |
| testbench: 9.* | |
| - laravel: 10.* | |
| testbench: 8.* | |
| exclude: | |
| - laravel: 13.* | |
| php: 8.3 | |
| - laravel: 10.* | |
| php: 8.5 | |
| name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
| coverage: none | |
| - name: Remove dev dependencies incompatible with older Laravel | |
| if: matrix.laravel == '10.*' | |
| run: composer remove larastan/larastan driftingly/rector-laravel laravel/pint --dev --no-interaction --no-update | |
| - name: Install dependencies | |
| run: | | |
| composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update | |
| composer require "orchestra/testbench:${{ matrix.testbench }}" --dev --no-interaction --no-update | |
| composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
| - name: Execute tests | |
| run: vendor/bin/phpunit |