Skip to content

Commit 028ac21

Browse files
committed
Use django-version in tests, not a single specific version
1 parent 6718918 commit 028ac21

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,17 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333

34-
- name: Install deps
35-
run: uv sync --all-extras --frozen
34+
- name: Install deps & Django ${{ matrix.django-version }}
35+
run: |
36+
uv sync --all-extras --frozen
37+
uv pip install "Django~=${{ matrix.django-version }}"
3638
3739
- name: Install Task
3840
uses: go-task/setup-task@v1
3941

4042
- name: Run tests
43+
env:
44+
UV_NO_SYNC: 1
4145
run: |
4246
uv run python -c "import django; print(django.get_version())"
4347
task test

0 commit comments

Comments
 (0)