Skip to content

Commit 08db48e

Browse files
committed
Fix due to the first reviewer.
1 parent b395260 commit 08db48e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/dep-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Python
2424
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2525
with:
26-
python-version: '3.12'
26+
python-version: '3.14'
2727
# astral-sh/setup-uv v8.1.0
2828
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
2929
with:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ This repository uses [uv](https://docs.astral.sh/uv/) for environments and [prek
1313
Install dependencies including the hook runner:
1414

1515
```bash
16-
uv sync --extra dev
16+
uv sync --group pre-commit
1717
```
1818

19-
Run every hook on the whole tree (same as the **Lint and format** GitHub workflow):
19+
Run every hook on the whole tree:
2020

2121
```bash
22-
uv run --extra dev prek run --all-files
22+
uv run --only-group pre-commit prek run --all-files --show-diff-on-failure
2323
```
2424

2525
Install Git commit hooks so hooks run on each commit:
2626

2727
```bash
28-
uv run --extra dev prek install
28+
uv run --only-group pre-commit prek install
2929
```
3030

3131
If you use the classic `pre-commit` CLI instead of prek, install it separately and run `pre-commit install` after `uv sync`.

0 commit comments

Comments
 (0)