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 { stages {
stage('Setup') { stage('Setup') {
steps { steps {
sh 'echo Hello world!' sh 'python -m pip install pipenv'
sh 'python -m pipenv install'
} }
} }
stage('Check') { stage('Check') {
steps { steps {
sh 'echo Hello galaxy!' sh 'python -m pipenv run bandit -r .'
} }
} }
} }