From 3b00b9cc5c9c4075a3e48bb50ffcca7a91ed96fe Mon Sep 17 00:00:00 2001 From: Serhii Petrov Date: Thu, 31 Oct 2024 19:06:44 +0200 Subject: [PATCH] Test against php 8.4 (#267) * Test against php 8.4 * Test against php 8.4 * Do not test laravel 10 against php 8.4 --- .github/workflows/spec-tests.yml | 5 ++++- .github/workflows/tests.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spec-tests.yml b/.github/workflows/spec-tests.yml index f91018bd..dde5b2ea 100644 --- a/.github/workflows/spec-tests.yml +++ b/.github/workflows/spec-tests.yml @@ -14,8 +14,11 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3] + php: [8.2, 8.3, 8.4] laravel: [10, 11] + exclude: + - laravel: 10 + php: 8.4 steps: - name: Checkout code diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a8d20057..f2bb547e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,8 +28,11 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3] + php: [8.2, 8.3, 8.4] laravel: [10, 11] + exclude: + - laravel: 10 + php: 8.4 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}