Skip to content

Commit 2d11221

Browse files
fix: Add --with-all-dependencies to workflow composer update
- Allows downgrading all dependencies when testing Laravel 10 - Fixes orchestra/canvas compatibility issues in test matrix - Ensures each Laravel version gets appropriate dep versions
1 parent dc5f4d7 commit 2d11221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install dependencies
5454
run: |
5555
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
56-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
56+
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --with-all-dependencies
5757
5858
- name: List Installed Dependencies
5959
run: composer show -D

0 commit comments

Comments
 (0)