Skip to content

Commit bbe6266

Browse files
committed
remove libvalkey
1 parent 540e999 commit bbe6266

File tree

3 files changed

+69
-172
lines changed

3 files changed

+69
-172
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ jobs:
8282
run: |
8383
python -m pip --quiet install poetry
8484
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
85-
poetry install -E yaml -E valkey
85+
if [ ${{ matrix.broker == 'valkey' }} == true ]; then
86+
additional_args="-E valkey"
87+
fi
88+
poetry install -E yaml $additional_args
8689
poetry run pip install django==${{ matrix.django-version }}
8790
8891
- name: Get version

0 commit comments

Comments
 (0)