Skip to content

Commit b18f073

Browse files
committed
Fix condition for installing dependencies
1 parent 5e0d0f7 commit b18f073

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Install dependencies
5757
run: |
58-
if [[ ${{ matrix.php == 'nightly' }} ]]; then
58+
if [[ '${{ matrix.php }}' == 'nightly' ]]; then
5959
composer update --no-interaction --ignore-platform-reqs
6060
else
6161
composer update --no-interaction

0 commit comments

Comments
 (0)