From df62cf96077e5689492a3e68c74679e5dc910f21 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 06:00:58 +0000 Subject: [PATCH] Update GitHub Actions for Laravel 11 --- .github/workflows/test.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e43614..98324aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,23 +2,30 @@ name: Test on: push: - branches: [ master ] + branches: + - master pull_request: - branches: [ master ] + branches: + - master jobs: test: - runs-on: ubuntu-latest + strategy: fail-fast: false matrix: - php: [8.1] - laravel: [10.*] + php: [8.1, '8.2'] + laravel: ['10.*', '11.*'] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: 8.* + - laravel: 11.* + testbench: 9.* + exclude: + - laravel: 11.* + php: 8.1 name: P ${{ matrix.php }} - L ${{ matrix.laravel }} - ${{ matrix.dependency-version }}