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 a8bf47e commit d35de5cCopy full SHA for d35de5c
.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: Run Django Template Tests
21
run: |
22
uvx cookiecutter django -v --no-input -o test/ \
23
- python_version=${{ matrix.python_version }} \
24
- postgresql_version=${{ matrix.postgresql_version }} \
25
- username_type=${{ matrix.username_type }} \
26
- use_drf=${{ matrix.use_drf }}
+ python_version="${{ matrix.python_version }}" \
+ postgresql_version="${{ matrix.postgresql_version }}" \
+ username_type="${{ matrix.username_type }}" \
+ use_drf="${{ matrix.use_drf }}"
0 commit comments