From 2621349ac28b18bbf5c521d5c8dc130e92a86644 Mon Sep 17 00:00:00 2001 From: Tom Witkowski Date: Mon, 10 Jun 2024 13:23:47 +0200 Subject: [PATCH] add L11 to test matrix --- .github/workflows/phpunit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index a05a868..3fc152b 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -12,11 +12,13 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1, 8.2] - laravel: [8.*, 9.*, 10.*] + php: [8.0, 8.1, 8.2, 8.3] + laravel: [8.*, 9.*, 10.*. 11.*] exclude: - laravel: 10.* php: 8.0 + - laravel: 11.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}