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 7ec888c commit 6c5a446Copy full SHA for 6c5a446
justfile
@@ -2,7 +2,7 @@
2
just --list --unsorted
3
4
# Run all build-related recipes in the justfile
5
-run-all: install-deps format-python check-python test-python check-commits build-website
+run-all: install-deps format-python check-python test-python check-security check-commits build-website
6
7
# Install Python package dependencies
8
install-deps:
@@ -60,3 +60,7 @@ check-commits:
60
else
61
echo "Can't either be on ${branch_name} or have more than ${number_of_commits}."
62
fi
63
+
64
+# Run basic security checks on the package
65
+check-security:
66
+ uv run bandit -r src/
0 commit comments