Skip to content

Commit 28015f3

Browse files
committed
chore: Fix if/else check
1 parent b649284 commit 28015f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dependency_compatibility_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Perform Dependency Compatibility Testing
3535
shell: bash
3636
run: |
37-
if [[ -z ${{ github.event.inputs.dependencies-list }} ]]
37+
if [[ ${{ github.event.inputs.dependencies-list }} == '' ]]
3838
./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
3939
else
4040
./.github/scripts/test_dependency_compatibility.sh -l ${{ github.event.inputs.dependencies-list }}
@@ -56,7 +56,7 @@ jobs:
5656
- name: Perform Dependency Compatibility Testing (Showcase)
5757
shell: bash
5858
run: |
59-
if [[ -z ${{ github.event.inputs.dependencies-list }} ]]
59+
if [[ ${{ github.event.inputs.dependencies-list }} == '' ]]
6060
../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
6161
else
6262
../.github/scripts/test_dependency_compatibility.sh -l ${{ github.event.inputs.dependencies-list }}

0 commit comments

Comments
 (0)