From 99d794f4cf3619d111b464cfe13bd841c1c670de Mon Sep 17 00:00:00 2001 From: n4ss1m Date: Sat, 21 Dec 2024 21:42:38 +0100 Subject: [PATCH] Add PHP 8.4 and stability matrix to CI workflow Extend the Laravel CI workflow to test against PHP 8.4 and include stability options (prefer-lowest, prefer-stable). This ensures broader compatibility and stability testing across environments. --- .github/workflows/laravel.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index b8c6ed5..1d4f977 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -14,7 +14,8 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.1, 8.2, 8.3] + php: [8.1, 8.2, 8.3, 8.4] + stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}