mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-02-13 15:12:51 +00:00
13 lines
210 B
Bash
Executable File
13 lines
210 B
Bash
Executable File
cd ../..
|
|
pwd
|
|
|
|
# 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 ./src |