We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfbfb20 commit b9d287cCopy full SHA for b9d287c
justfile
@@ -60,7 +60,9 @@ build-website:
60
export QUARTO_PYTHON=.venv/bin/python3
61
poetry run quarto render --execute
62
63
-# Add files for a new function (function file and test file)
64
-add-function app part name:
65
- touch ./{{app}}/{{part}}/{{name}}.py
66
- touch ./tests/{{part}}/test_{{name}}.py
+check-commit:
+ #!/bin/zsh
+ if [[ $(git rev-parse --abbrev-ref HEAD) != "main" ]]
+ then
67
+ poetry run cz check --rev-range main..HEAD
68
+ fi
0 commit comments