From 5f4ccb9fc38018b9087195c8892d4009002f21ac Mon Sep 17 00:00:00 2001 From: Alexandr Chernyaev Date: Fri, 24 Feb 2023 22:22:45 +0300 Subject: [PATCH] Update run-tests.yml --- .github/workflows/run-tests.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 940ac54..7c3ce20 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,10 +17,17 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - php: [ 8.1, 8.0 ] - dependency-version: [ prefer-lowest, prefer-stable ] + php: [8.2, 8.1, 8.0] + laravel: [10.*, 9.*] + dependency-version: [prefer-lowest, prefer-stable] include: - - testbench: 7.* + - laravel: 10.* + testbench: 8.* + - laravel: 9.* + testbench: 7.* + exclude: + - laravel: 10.* + php: 8.0 name: P${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}