From 11f031ec3a0d382958a12e65dc0b3d8375210c4d Mon Sep 17 00:00:00 2001 From: Patrick Carlo-Hickman Date: Fri, 20 Sep 2024 10:53:11 -0400 Subject: [PATCH] Update github actions to add Laravel 11 to the test matrix. --- .github/workflows/phpunit.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 34b93f7..a1fa4ce 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -36,10 +36,14 @@ jobs: matrix: os: [ubuntu-latest] php: ['8.0', '8.1', '8.2'] - laravel: ['9.*', '10.*'] + laravel: ['9.*', '10.*', '11.*'] exclude: - php: '8.0' laravel: '10.*' + - php: '8.0' + laravel: '11.*' + - php: '8.1' + laravel: '11.*' name: tests - PHP ${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}