From 3f3f214f4b017183cf1cfe208a2a54a73832ab76 Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Fri, 15 Mar 2024 00:23:29 +0300 Subject: [PATCH] check laravel ^10.0 and ^11.0 --- .github/workflows/phpunits.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/phpunits.yaml b/.github/workflows/phpunits.yaml index 5db2a8a..595f351 100644 --- a/.github/workflows/phpunits.yaml +++ b/.github/workflows/phpunits.yaml @@ -13,6 +13,7 @@ jobs: strategy: matrix: php-versions: [8.2, 8.3] + laravel-versions: [^10.0, ^11.0] services: clickhouse: @@ -50,7 +51,7 @@ jobs: - name: Install dependencies id: composer-dependencies - run: composer install --prefer-dist --no-progress + run: composer req --dev laravel/framework:${{ matrix.laravel-versions }} -W || composer install - name: Check codeclimate id: codeclimate-check