From 12f059c375ca4657cbeac9dd3f7db261c967cdd1 Mon Sep 17 00:00:00 2001 From: Matthew Poulter Date: Wed, 15 Feb 2023 19:04:02 +0100 Subject: [PATCH] Reduce tests --- .github/workflows/run-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7272896..d72e35b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -18,13 +18,17 @@ jobs: os: [ ubuntu-latest ] php: [ 8.1, 8.2 ] laravel: [ "^9.0", "^10.0" ] - enum: [ "^5.0", "^6.0" ] stability: [ prefer-lowest, prefer-stable ] include: - laravel: "^9.0" testbench: "^7.0" + enum: "^5.0" + - laravel: "^9.0" + testbench: "^7.0" + enum: "^6.0" - laravel: "^10.0" testbench: "^8.0" + enum: "^6.0" name: P${{ matrix.php }} - L${{ matrix.laravel }} - E${{ matrix.enum }} - ${{ matrix.stability }} - ${{ matrix.os }}