From 65d9e53d563c31f893987aec1b81e5616601cbb8 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Tue, 18 Jan 2022 21:11:20 +0500 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3dc471e..a9878d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,18 @@ jobs: pest: name: Tests (Pest) runs-on: ubuntu-latest - laravel: [8.*, 9.*] - dependency-version: [prefer-lowest, prefer-stable] - include: - - laravel: 9.* - testbench: 7.* - - laravel: 8.* - testbench: 6.* + strategy: + fail-fast: true + matrix: + os: [ubuntu-latest] + php: [8.0] + laravel: [9.*, 8.*] + dependency-version: [prefer-stable] + include: + - laravel: 9.* + testbench: 7.* + - laravel: 8.* + testbench: ^6.9 steps: - uses: actions/checkout@v2