From dda4f2b68d947a561c1b8686d72fcafa516990da Mon Sep 17 00:00:00 2001 From: Sam Cowdroy Date: Thu, 19 Sep 2024 11:33:47 +0100 Subject: [PATCH] please --- .github/workflows/tests.yaml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 134f7f7..9c8582a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -8,25 +8,21 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.0', '8.1', '8.2', '8.3'] + php: [8.0, 8.1, 8.2, 8.3] illuminate: [9, 10, 11] exclude: # Exclude incompatible PHP versions for Laravel 9 - - php: '8.2' - illuminate: 9 - - php: '8.3' + - php: 8.3 illuminate: 9 # Exclude incompatible PHP versions for Laravel 10 - - php: '8.0' - illuminate: 10 - - php: '8.3' + - php: 8.0 illuminate: 10 # Exclude incompatible PHP versions for Laravel 11 - - php: '8.0' + - php: 8.0 illuminate: 11 - - php: '8.1' + - php: 8.1 illuminate: 11 steps: