From 215bdd54976c70df9c6840e38e883782fd37d9e9 Mon Sep 17 00:00:00 2001 From: Tom Schlick Date: Sun, 16 Apr 2023 00:04:01 -0400 Subject: [PATCH] enable laravel 10 for tests (#4) * enable laravel 10 for tests * update version constraints --- .github/workflows/run-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5a0c91e..0a68105 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,12 +14,15 @@ jobs: matrix: os: [ubuntu-latest] php: [8.2, 8.1] - laravel: [9.*] + laravel: [9.*, 10.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 9.* testbench: 7.* carbon: ^2.63 + - laravel: 10.* + testbench: 8.* + carbon: ^2.63 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}