Skip to content

Commit 2b3191e

Browse files
authored
Merge pull request #336 from patrick-cullen/fix-workflow-windows-bug
fix: caret for installing carbon dependency on windows workflow now escaped correctly
2 parents d163b82 + 3843528 commit 2b3191e

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
@@ -45,7 +45,7 @@ jobs:
4545
4646
- name: Install dependencies
4747
run: |
48-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
48+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.os == 'windows-latest' && '^^^' || '' }}${{ matrix.carbon }}" --no-interaction --no-update
4949
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5050
5151
- name: List Installed Dependencies

0 commit comments

Comments
 (0)