1 parent 53e726d commit a80a64cCopy full SHA for a80a64c
1 file changed
pyproject.toml
@@ -50,12 +50,19 @@ tag = true
50
sign_tags = false
51
tag_name = "v{new_version}"
52
tag_message = "Bump version: {current_version} → {new_version}"
53
-allow_dirty = true
+allow_dirty = false
54
commit = true
55
message = "Bump version: {current_version} → {new_version}"
56
moveable_tags = []
57
commit_args = ""
58
setup_hooks = []
59
-pre_commit_hooks = []
+pre_commit_hooks = [
60
+ "uv sync",
61
+ "git add uv.lock",
62
+ "uv run --group lint ruff check .",
63
+ "uv run --group lint ruff format --check .",
64
+ "uv run --group lint --group test ty check",
65
+ "uv run --group test pytest -v tests/ --cov=gameoflife/",
66
+]
67
post_commit_hooks = []
68
allow_shell_hooks = true
0 commit comments