Skip to content

Commit

Permalink
try to fix if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
gcroci2 committed Jan 24, 2024
1 parent f9ecec7 commit e9b4deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-python-and-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ runs:
conda install pytables
- name: Install the editable version of the package
shell: bash {0}
if: ${{ inputs.test-release }} == "false"
if: ${{ inputs.test-release == "false"}}
run: pip install .'[${{ inputs.extras-require }}]'
- name: Install the latest released version of the package
shell: bash {0}
if: ${{ inputs.test-release }} == "true"
if: ${{ inputs.test-release == "true"}}
run: |
rm -r deeprank2
pip install deeprank2

0 comments on commit e9b4deb

Please sign in to comment.