From 0eaf1e59030267319b67d678459c6c96103992cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agli=20Pan=C3=A7i?= Date: Thu, 14 Mar 2024 09:18:19 +0100 Subject: [PATCH] Excluding old Laravel versions with PHP 8.2 --- .github/workflows/run-tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index bd9e3b8..5746ef7 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,8 +15,8 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, 8.0, 8.1, '8.2'] - laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*'] + php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2] + laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', 11.*] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 10.* @@ -54,6 +54,10 @@ jobs: laravel: 6.* - php: 8.1 laravel: 7.* + - php: 8.2 + laravel: 6.* + - php: 8.2 + laravel: 7.* - php: 8.1 laravel: 8.* - laravel: 11.*