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 52
52
- name : Install dependencies
53
53
run : |
54
54
poetry install --all-extras
55
+ poetry run pip install ranx
55
56
56
57
- name : Authenticate to Google Cloud
57
58
uses : google-github-actions/auth@v1
@@ -116,19 +117,19 @@ jobs:
116
117
- name : Install dependencies
117
118
run : |
118
119
poetry install --all-extras
120
+ poetry run pip install ranx
119
121
120
- - name : Install specific redis-py version
121
- run : |
122
+ # Install right redis version based on redis py
122
123
if [[ "${{ matrix.redis-py-version }}" == "5.x" ]]; then
123
124
poetry add "redis>=5.0.0,<6.0.0"
124
125
else
125
126
poetry add "redis>=6.0.0,<7.0.0"
126
127
fi
127
128
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
132
133
133
134
- name : Set Redis image name
134
135
run : |
You can’t perform that action at this time.
0 commit comments