Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
activate-environment: true

- name: Install dependencies
run: uv sync --frozen --group lint --group test
run: uv sync --locked --group lint --group test

# Start the database early to give it a chance to get ready before
# we start running tests.
Expand Down
9 changes: 8 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@ repos:
args: [--markdown-linebreak-ext=md]
- repo: local
hooks:
- id: uv-lock
name: uv lock
description: Checks the validity of the uv.lock file.
entry: uv lock
language: system
files: ^(uv\.lock|pyproject\.toml|uv\.toml)$
pass_filenames: false
- id: ruff
name: ruff
description: This hook runs ruff within our project's environment.
entry: uv run ruff check --force-exclude
entry: uv run --frozen ruff check --force-exclude
language: system
types: [python]