Merge pull request #148 from laravel-shift/l13-compatibility #161
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: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: [8.1, 8.2, 8.3] | |
| laravel: ['10.*', '11.*', '12.*', '13.*'] | |
| dependency-version: [prefer-stable] | |
| include: | |
| - laravel: 10.* | |
| testbench: 8.* | |
| - laravel: 11.* | |
| testbench: 9.* | |
| - laravel: 12.* | |
| testbench: 10.* | |
| - laravel: 13.* | |
| testbench: 11.* | |
| exclude: | |
| - laravel: 9.* | |
| php: 8.3 | |
| - laravel: 11.* | |
| php: 8.1 | |
| - laravel: 12.* | |
| php: 8.1 | |
| - laravel: 13.* | |
| php: 8.1 | |
| - laravel: 13.* | |
| php: 8.2 | |
| name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }} | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v2 | |
| - name: Cache Dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.composer/cache/files | |
| key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv, mcrypt | |
| coverage: none | |
| - name: Install Dependencies | |
| run: | | |
| composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "symfony/console:>=4.3.4" --no-interaction --no-update | |
| composer remove "tightenco/duster" --dev --no-interaction --no-update | |
| composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
| - name: Execute Tests | |
| run: ./vendor/bin/phpunit --testdox |