Skip to content

Commit aafbed3

Browse files
committed
Debug
1 parent 18dfeb2 commit aafbed3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,16 @@ jobs:
3232
python-version: ${{ matrix.python-version }}
3333

3434
- name: Install deps
35-
run: uv sync --all-extras --frozen
35+
run: uv sync --all-extras
3636

3737
- name: Install Django ${{ matrix.django-version }}
38-
run: uv pip install "Django~=${{ matrix.django-version }}"
38+
run: uv pip install "Django~=${{ matrix.django-version }}" --upgrade
39+
40+
- name: Show Django version
41+
run: uv run --no-sync python -c "import django; print(django.get_version())" >> $GITHUB_STEP_SUMMARY
42+
43+
- name: Export Django version
44+
run: echo "DJANGO_VERSION=${{ matrix.django-version }}" >> $GITHUB_STEP_SUMMARY
3945

4046
- name: Install Task
4147
uses: go-task/setup-task@v1

0 commit comments

Comments
 (0)