From 4970efb91772d85942349cae7ce00885e1c6769d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20G=C3=B6r=C3=B6g?= Date: Fri, 8 Apr 2022 13:15:14 +0200 Subject: [PATCH] ci: exclude older php version with laravel 9 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 80bb177..a9f3d85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,6 +18,11 @@ jobs: php: [ 7.3, 7.4, 8.0 ] laravel: [ '^6.10', '^8.0', '^9.0' ] dependency-version: [prefer-lowest, prefer-stable] + exclude: + - php: 7.4 + laravel: '^9.0' + - php: 7.3 + laravel: '^9.0' name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}