From 739c30e507b7c38be2f6067c5c6bfb689f23fa58 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 15:36:38 +0100 Subject: [PATCH] Add PHP version matrix --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d320b4..d9ecdfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,12 @@ jobs: fail-fast: true matrix: laravel: [6, 8, 9, 10] - + php: ["7.3", "8.0", "8.1"] + exclude: + - laravel: "^10.0" + php: "8.0" + - laravel: "^9.0" + php: "7.3" name: Tests (PHPUnit) - L${{ matrix.laravel }}