From b39a8542ea0ae8480209e65f45d5ad30a36b218e Mon Sep 17 00:00:00 2001 From: Quentin Renard Date: Sat, 27 Feb 2021 04:49:46 +0100 Subject: [PATCH] Update test matrix --- .github/workflows/main.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 89dde1c6a..a9289f149 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,18 +9,27 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - php: [8.0, 7.4, 7.3, 7.2, 7.1] - laravel: [8.*, 7.*, 6.*, 5.8.*] + php: [8.0, 7.4, 7.3, 7.2] + laravel: [8, 7, 6, 5.8] stability: [prefer-stable] include: - - laravel: 8.* + - laravel: 8 testbench: 6.* - - laravel: 7.* + - laravel: 7 testbench: 5.* - - laravel: 6.* + - laravel: 6 testbench: 4.* - - laravel: 5.8.* + - laravel: 5.8 testbench: 3.8.* + exclude: + - laravel: 8 + php: 7.2 + - laravel: 7 + php: 8.0 + - laravel: 6 + php: 8.0 + - laravel: 5.8 + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}