From f5925e757c2188a6b6a251f682f8bd100783a592 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 15:38:20 +0100 Subject: [PATCH] Use ci.yml from #12 --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9ecdfe..2bf2860 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,8 +8,13 @@ jobs: strategy: fail-fast: true matrix: - laravel: [6, 8, 9, 10] php: ["7.3", "8.0", "8.1"] + laravel: ["^6.0", "^8.0", "^9.0", "^10.0"] + include: + - laravel: "^9.0" + testbench: "^7.0" + - laravel: "^10.0" + testbench: "^8.0" exclude: - laravel: "^10.0" php: "8.0" @@ -25,7 +30,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.0' - name: Install dependencies run: composer require "laravel/framework:^${{matrix.laravel}}.0"