Update 2024_05_31_102710_create_carts_table.php #164
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: "Run Tests" | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: [8.0, 8.1, 8.2, 8.3, 8.4] | |
| laravel: [9.*, 10.*, 11.*, 12.*] | |
| dependency-version: [prefer-lowest, prefer-stable] | |
| include: | |
| - laravel: 12.* | |
| testbench: 10.* | |
| pest-plugin-laravel: 3.1.0 | |
| - laravel: 11.* | |
| testbench: 9.* | |
| pest-plugin-laravel: 2.3.0 | |
| - laravel: 10.* | |
| testbench: 8.* | |
| pest-plugin-laravel: 2.0.0 | |
| - laravel: 9.* | |
| testbench: 7.* | |
| pest-plugin-laravel: 1.4.0 | |
| exclude: | |
| - laravel: 12.* | |
| php: 8.1 | |
| - laravel: 12.* | |
| php: 8.0 | |
| - laravel: 11.* | |
| php: 8.1 | |
| - laravel: 11.* | |
| php: 8.0 | |
| - laravel: 10.* | |
| php: 8.0 | |
| - laravel: 9.* | |
| php: 8.3 | |
| name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "pestphp/pest-plugin-laravel:${{ matrix.pest-plugin-laravel }}" --no-interaction --no-update | |
| composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
| - name: Execute tests | |
| run: vendor/bin/pest | |