We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 540e999 commit bbe6266Copy full SHA for bbe6266
.github/workflows/test.yml
@@ -82,7 +82,10 @@ jobs:
82
run: |
83
python -m pip --quiet install poetry
84
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
85
- poetry install -E yaml -E valkey
+ if [ ${{ matrix.broker == 'valkey' }} == true ]; then
86
+ additional_args="-E valkey"
87
+ fi
88
+ poetry install -E yaml $additional_args
89
poetry run pip install django==${{ matrix.django-version }}
90
91
- name: Get version
0 commit comments