Skip to content

Commit bba34e3

Browse files
committed
try to fix if cond
1 parent e9b4deb commit bba34e3

File tree

1 file changed

+2
-2
lines changed
  • .github/actions/install-python-and-package

1 file changed

+2
-2
lines changed

.github/actions/install-python-and-package/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ runs:
8484
conda install pytables
8585
- name: Install the editable version of the package
8686
shell: bash {0}
87-
if: ${{ inputs.test-release == "false"}}
87+
if: ${{ inputs.test-release == false}}
8888
run: pip install .'[${{ inputs.extras-require }}]'
8989
- name: Install the latest released version of the package
9090
shell: bash {0}
91-
if: ${{ inputs.test-release == "true"}}
91+
if: ${{ inputs.test-release == true}}
9292
run: |
9393
rm -r deeprank2
9494
pip install deeprank2

0 commit comments

Comments
 (0)