Adding bandit check

This commit is contained in:
Amber McCloughan 2022-09-01 00:12:31 -04:00
parent 144aa93b51
commit 54f91be166
1 changed files with 3 additions and 2 deletions

5
Jenkinsfile vendored
View File

@ -9,12 +9,13 @@ pipeline {
stages {
stage('Setup') {
steps {
sh 'echo Hello world!'
sh 'python -m pip install pipenv'
sh 'python -m pipenv install'
}
}
stage('Check') {
steps {
sh 'echo Hello galaxy!'
sh 'python -m pipenv run bandit -r .'
}
}
}