From 3436cd197f502b11e9e8bfa54c214874a9812dd3 Mon Sep 17 00:00:00 2001 From: Propaganistas Date: Mon, 18 Dec 2023 21:31:45 +0100 Subject: [PATCH] add PHP 8.3 to tests matrix --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e09a038..1f18e1e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.0, 8.1, 8.2 ] + php: [ 8.0, 8.1, 8.2, 8.3 ] laravel: [ 9, 10 ] stability: [ prefer-lowest, prefer-stable ] exclude: @@ -36,7 +36,7 @@ jobs: # https://github.com/briannesbitt/Carbon/releases/tag/2.62.1 - name: Patch Carbon version - if: matrix.php == 8.2 + if: matrix.php == 8.2 || matrix.php == 8.3 run: | composer require "nesbot/carbon=^2.63" --dev --no-interaction --no-update