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
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ repos:
language: python
entry: prepare-commit-msg
stages: [prepare-commit-msg]
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.10.0
hooks:
- id: uv-lock

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Execute the lock hook in the PR workflow

When Dependabot opens the dependency-update PRs this change is intended to guard, no client-side pre-commit hook runs. The only workflow inspected, .github/workflows/deploy.yaml, runs uv sync --all-groups and pytest at lines 26–28 but never invokes pre-commit, so this new hook is not executed and a PR with an uncommitted lockfile update can still pass. Add a CI step that runs this hook (or an equivalent lock consistency check).

Useful? React with 👍 / 👎.