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