mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-03-19 16:54:05 +00:00
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
# get dependencies
|
|
pip install -r ./requirements.txt
|
|
|
|
# check cyclomatic complexity
|
|
python -m mccabe --min 3 ./../src/**/*.py
|
|
|
|
# SAST (static application security testing)
|
|
bandit -r ./../src
|
|
|
|
mypy |