Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@ on:
workflow_dispatch:

jobs:
uv-lock-check:
runs-on: ubuntu-latest
name: "UV Lockfile Sync Validation 🔒"
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
persist-credentials: false

- name: Install uv
uses: astral-sh/setup-uv@v6

- name: Check uv.lock sync status
run: uv lock --locked

ruff:
runs-on: ubuntu-latest
name: "ruff on code"
Expand All @@ -26,7 +43,7 @@ jobs:
src: "."

test-regular:
needs: ["ruff"]
needs: ["ruff", "uv-lock-check"]
runs-on: ubuntu-latest
name: "Tests py${{ matrix.python-version }}/dj${{ matrix.django-version }}/${{ matrix.broker }}"
strategy:
Expand Down
Loading