From 8ad6bc4b82c93d21a68699888f3d74c820952d55 Mon Sep 17 00:00:00 2001 From: rennokki Date: Fri, 14 Apr 2023 17:36:38 +0300 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4e11eb..1355d7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,19 +19,19 @@ jobs: strategy: matrix: php: - - '8.0' - '8.1' + - '8.2' laravel: - - 8.* - 9.* + - 10.* prefer: - 'prefer-lowest' - 'prefer-stable' include: - - laravel: '8.*' - testbench: '6.*' - laravel: '9.*' testbench: '7.*' + - laravel: '10.*' + testbench: '8.*' name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }} @@ -53,7 +53,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "orchestra/database:${{ matrix.testbench }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --${{ matrix.prefer }} --prefer-dist --no-interaction --no-suggest - name: Run static analysis