From 0bf4eb54e41508cafcfe5d21b8b872f0aff67878 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 11:01:46 +0100 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"