From d3a654be2658c38d26502608fe86209635fc5ec0 Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Thu, 24 Oct 2024 21:14:24 +0200 Subject: [PATCH] ci: do not run tests on PHP 7.4 --- .github/workflows/tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 18aa855..e772e51 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,16 +9,12 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.4', '8.0', '8.1', '8.2' ] + php: [ '8.0', '8.1', '8.2' ] laravel: [ '8.*', '9.*', '10.*' ] stability: [ prefer-lowest, prefer-stable ] exclude: - laravel: '8.*' php: '8.2' - - laravel: '9.*' - php: '7.4' - - laravel: '10.*' - php: '7.4' - laravel: '10.*' php: '8.0'