We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecdb2cf commit 37142c0Copy full SHA for 37142c0
.github/workflows/main.yml
@@ -92,7 +92,9 @@ jobs:
92
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
93
94
- name: Install dependencies
95
- if: "matrix.laravel == '11.*' && matrix.php == '8.3'" || "matrix.laravel == '12.*' && matrix.php == '8.3'"
+ if: >
96
+ (matrix.laravel == '11.*' && matrix.php == '8.3') ||
97
+ (matrix.laravel == '12.*' && matrix.php == '8.3')
98
run: |
99
composer require "laravel/framework:11.*" "orchestra/testbench:9.*" --no-interaction --no-update --dev
100
composer update --prefer-stable --prefer-dist --no-interaction
0 commit comments