We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 780e81a commit 7f0e4a0Copy full SHA for 7f0e4a0
.github/workflows/ci.yml
@@ -24,11 +24,15 @@ jobs:
24
enable-cache: true
25
26
- name: Install dependencies
27
- run: uv sync
+ run: uv sync --locked
28
29
- name: Run pre-commit hooks
30
run: uv run pre-commit run --all-files
31
32
+ - name: Show files modified by pre-commit
33
+ if: failure()
34
+ run: git diff --name-only
35
+
36
test:
37
name: Test
38
runs-on: ubuntu-latest
@@ -46,7 +50,7 @@ jobs:
46
50
47
51
48
52
49
53
54
55
- name: Run tests
56
run: uv run pytest -v
0 commit comments