diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7092292..ae8378f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,11 @@ jobs: strategy: fail-fast: true matrix: + php: [8.0, 8.1] laravel: [9, 10] + exclude: + - laravel: 10 + php: 8.0 name: Tests (PHPUnit) - L${{ matrix.laravel }} @@ -19,7 +23,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: ${{matrix.php}} - name: Install dependencies run: composer require "laravel/framework:^${{matrix.laravel}}.0"