We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f3104 commit dd92522Copy full SHA for dd92522
.github/workflows/tests.yml
@@ -50,8 +50,9 @@ jobs:
50
51
- name: Install dependencies
52
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
+ composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
+ 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
56
57
- name: Execute tests
58
run: vendor/bin/phpunit
0 commit comments