File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 5252 - name : Install dependencies
5353 run : |
5454 poetry install --all-extras
55+ poetry run pip install ranx
5556
5657 - name : Authenticate to Google Cloud
5758 uses : google-github-actions/auth@v1
@@ -116,19 +117,19 @@ jobs:
116117 - name : Install dependencies
117118 run : |
118119 poetry install --all-extras
120+ poetry run pip install ranx
119121
120- - name : Install specific redis-py version
121- run : |
122+ # Install right redis version based on redis py
122123 if [[ "${{ matrix.redis-py-version }}" == "5.x" ]]; then
123124 poetry add "redis>=5.0.0,<6.0.0"
124125 else
125126 poetry add "redis>=6.0.0,<7.0.0"
126127 fi
127128
128- - name : Install hiredis if needed
129- if : matrix.connection == ' hiredis'
130- run : |
131- poetry add hiredis
129+ # Install hiredis if selected
130+ if [[ "${{ matrix.connection }}" == " hiredis" ]]; then
131+ poetry add hiredis
132+ fi
132133
133134 - name : Set Redis image name
134135 run : |
You can’t perform that action at this time.
0 commit comments