From 78792e2412d580eb0611d65d743f04fefb413e78 Mon Sep 17 00:00:00 2001 From: Eddie Palmans Date: Wed, 14 Feb 2024 16:25:10 +0100 Subject: [PATCH] GH actions --- .github/workflows/run-tests.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ae8bd5b..c4e6835 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,15 +13,12 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - laravel: [8.*, 9.*] + laravel: [10.*] stability: [prefer-lowest, prefer-stable] include: - - laravel: 8.* - php: 7.4 - testbench: ^6.24 - - laravel: 9.* - php: 8.0 - testbench: ^7.6 + - laravel: 10.* + php: 8.1 + testbench: ^8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}