Cast quality option to int to fix TypeError from URL params, fixes #231 #10
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: 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, 8.2, 8.1, 8.0 ] | |
| 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: 13.* | |
| php: 8.2 | |
| - laravel: 13.* | |
| php: 8.1 | |
| - laravel: 13.* | |
| php: 8.0 | |
| - laravel: 12.* | |
| php: 8.1 | |
| - laravel: 12.* | |
| php: 8.0 | |
| - laravel: 11.* | |
| php: 8.1 | |
| - laravel: 11.* | |
| php: 8.0 | |
| - laravel: 10.* | |
| php: 8.5 | |
| - laravel: 10.* | |
| php: 8.0 | |
| 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 |