From d17eb2db183ccb0cb191555087ebba7eebb06de5 Mon Sep 17 00:00:00 2001 From: Shift Date: Tue, 27 Feb 2024 16:36:19 +0000 Subject: [PATCH] Update GitHub Actions for Laravel 11 --- .github/workflows/tests.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 87a70b8..3368092 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,16 +1,19 @@ name: Tests -on: [push, pull_request] +on: + - push + - pull_request jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.1] - laravel: [8.*, 9.*, 10.*] + php: [8.1, '8.2'] + laravel: ['8.*', '9.*', '10.*', '11.*'] dependency-version: [prefer-stable] include: - laravel: 10.* @@ -19,6 +22,11 @@ jobs: testbench: 7.* - laravel: 8.* testbench: 6.* + - laravel: 11.* + testbench: 9.* + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}