From 0633e3201b4396023da8caf89c2b40059cd5f1c1 Mon Sep 17 00:00:00 2001 From: askdkc Date: Tue, 16 Jan 2024 21:27:13 +0900 Subject: [PATCH] Update run-tests.yml --- .github/workflows/run-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ec52cbc..2ad0ee3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,16 +14,20 @@ jobs: matrix: os: [ubuntu-latest] php: [8.0, 8.1, 8.2, 8.3] - laravel: [10.*, 9.*] + laravel: [11.*, 10.*, 9.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 9.* testbench: 7.* - laravel: 10.* testbench: 8.* + - laravel: 11.* + testbench: 9.* exclude: - laravel: 10.* php: 8.0 + - laravel: 11.* + php: [8.0, 8.1] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}