We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68a1617 commit a044c09Copy full SHA for a044c09
.github/workflows/check-regeneration.yml
@@ -41,7 +41,9 @@ jobs:
41
uses: astral-sh/setup-uv@v3
42
43
- name: Run Python checks
44
- run: uv run hatch run all-check
+ # Passing an explicit empty filter avoids Click's sentinel default in newer releases
45
+ # breaking Hatch's JSON parsing.
46
+ run: uv run hatch run --filter '{}' all-check
47
working-directory: test-proj
48
49
check-ui:
@@ -62,8 +64,7 @@ jobs:
62
64
- name: Activate pnpm version
63
65
working-directory: test-proj/ui
66
run: corepack prepare --activate
-
67
68
- name: Run UI checks
69
run: pnpm run all-check
- working-directory: test-proj/ui
70
+ working-directory: test-proj/ui
0 commit comments