Skip to content

Commit dd92522

Browse files
committed
Workflow
1 parent 26f3104 commit dd92522

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ jobs:
5050

5151
- name: Install dependencies
5252
run: |
53-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
54-
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
53+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
54+
if [[ "${{ matrix.laravel }}" == "10.*" ]]; then composer require "doctrine/dbal:^3.3" --no-interaction --no-update; fi
55+
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
5556
5657
- name: Execute tests
5758
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)