Skip to content

Commit 6c5a446

Browse files
authored
build: 🔨 add bandit security checks to justfile (#58)
## Description Updated from Sprout. <!-- Select quick/in-depth as necessary --> Doesn't need a review.
1 parent 7ec888c commit 6c5a446

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

justfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
just --list --unsorted
33

44
# Run all build-related recipes in the justfile
5-
run-all: install-deps format-python check-python test-python check-commits build-website
5+
run-all: install-deps format-python check-python test-python check-security check-commits build-website
66

77
# Install Python package dependencies
88
install-deps:
@@ -60,3 +60,7 @@ check-commits:
6060
else
6161
echo "Can't either be on ${branch_name} or have more than ${number_of_commits}."
6262
fi
63+
64+
# Run basic security checks on the package
65+
check-security:
66+
uv run bandit -r src/

0 commit comments

Comments
 (0)