Skip to content

Commit e9805d0

Browse files
committed
Add bandit to Makefile targets
Signed-off-by: Federico Busetti <[email protected]>
1 parent 2da31e2 commit e9805d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ format:
1818
lint:
1919
poetry run ruff .
2020

21+
bandit:
22+
poetry run bandit -c .bandit.yml -r .
23+
2124
format-fix:
2225
poetry run black .
2326

@@ -31,7 +34,7 @@ update-dependencies:
3134
poetry update --with dev
3235

3336
fix: format-fix lint-fix
34-
check: typing test format lint
37+
check: typing format lint test bandit
3538

3639
docs:
3740
poetry run mkdocs serve

0 commit comments

Comments
 (0)