8 lines
268 B
Bash
Executable File
8 lines
268 B
Bash
Executable File
printf "\n\n|| Installing static analysis requirements ||\n\n"
|
|
pip install -r requirements_static.txt
|
|
|
|
printf "\n\n|| Starting ruff check ||\n\n"
|
|
ruff check --config=./pyproject.toml
|
|
|
|
printf "\n\n|| Starting bandit check ||\n\n"
|
|
bandit -r lockbox/ -c ./pyproject.toml |