Skip to content

Commit

Permalink
pip_install_on_python_3_x.yml: Fix if statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jul 12, 2024
1 parent 43e67cd commit 1c57234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pip_install_on_python_3_x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
#- run: pip uninstall -y ${{ matrix.module }}
- run: pip install --upgrade pip
- run: pip install ${{ matrix.module }}
- if: ${{ matrix.module == "django-haystack" }}
- if: ${{ matrix.module }} == "django-haystack"
shell: python
run: |
import django
print(django.__version__)
import haystack
print(haystack.__version__)
- if: ${{ matrix.module == "pysolr" }}
- if: ${{ matrix.module }} == "pysolr"
shell: python
run: |
import pysolr
Expand Down

0 comments on commit 1c57234

Please sign in to comment.