From e71788777a3329c5f23aff686cb1c1623b5d48c7 Mon Sep 17 00:00:00 2001 From: Faruk Nasir Date: Wed, 15 Feb 2023 14:51:08 +0100 Subject: [PATCH] Update run-tests.yml --- .github/workflows/run-tests.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index a76e3d2..c132996 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -2,9 +2,9 @@ name: run-tests on: push: - branches: [main] + branches: [v1.x] pull_request: - branches: [main] + branches: [v1.x] jobs: test: @@ -13,12 +13,17 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.1] - laravel: [9.*] + php: [8.2, 8.1] + laravel: [10.*, 9.*] stability: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 9.* testbench: 7.* + exclude: + - php: 8.2 + laravel: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}