Skip to content

Commit a6d9cb0

Browse files
committed
Use django-version in tests, not a single specific version
1 parent 27debc6 commit a6d9cb0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ jobs:
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

29-
- name: Install deps
30-
run: uv sync --all-extras --frozen
29+
- name: Install deps & Django ${{ matrix.django-version }}
30+
run: |
31+
uv sync --all-extras --frozen
32+
uv pip install "Django~=${{ matrix.django-version }}"
3133
3234
- name: Install Task
3335
uses: go-task/setup-task@v1

0 commit comments

Comments
 (0)