From e7e847a5a7ea1d721a00634383d329ab315fff46 Mon Sep 17 00:00:00 2001 From: Cesar Garcia Date: Tue, 3 Dec 2024 10:25:36 +0100 Subject: [PATCH] Add test to php 8.4 --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 079372d..3ea11a7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.3, 8.2, 8.1] + php: [8.4, 8.3, 8.2] laravel: ['10.*', '11.*'] dependency-version: [prefer-stable] include: @@ -20,8 +20,8 @@ jobs: - laravel: 11.* testbench: 9.* exclude: - - laravel: 11.* - php: 8.1 + - laravel: 10.* + php: 8.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}