From 9f4b2bbb2ae506fb15ab788b02d8e9ed5c94a925 Mon Sep 17 00:00:00 2001 From: Santiago Garcia Date: Fri, 1 Mar 2024 18:01:05 -0500 Subject: [PATCH] Update test.yaml --- .github/workflows/tests.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a914739c..627190a9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,13 +12,18 @@ jobs: fail-fast: false matrix: php: [8.1, 8.2, 8.3] - stability: [prefer-stable] - laravel: ["11.x-dev", ^10.0] + laravel: [10.*, 11.*] + stability: [prefer-lowest, prefer-stable] + include: + - laravel: 10.* + testbench: ^8.20 + - laravel: 11.* + testbench: ^9.0 exclude: - - laravel: "11.x-dev" - php: 8.1 + - php: 8.1 + laravel: 11.* - name: PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.laravel }} + name: PHP ${{ matrix.php }} - ${{ matrix.laravel }} - ${{ matrix.stability }} steps: - name: Checkout code