From bd837863189c27ab9ce8bb7c6ac4a5bd31cc5c91 Mon Sep 17 00:00:00 2001 From: Taha Paksu Date: Sun, 20 Dec 2020 03:33:14 +0300 Subject: [PATCH] Minimal setup --- .github/workflows/run-tests.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 743ba2d..b7c7b30 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,20 +9,10 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: [8.0, 7.4, 7.3] - laravel: [8.*, 7.*, 6.*] - testbench: [4.*, 5.*, 6.*] + php: [8.0, 7.4] + laravel: [8.*] + testbench: [6.*] stability: [prefer-stable] - include: - - laravel: 8.* - testbench: 6.* - php: 7.3|7.4|8.0 - - laravel: 7.* - testbench: 5.* - php: 7.3|7.4 - - laravel: 6.* - testbench: 4.* - php: 7.3|7.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}