From 54f91be166b0aa2bced043575634402205d09718 Mon Sep 17 00:00:00 2001 From: Amber Date: Thu, 1 Sep 2022 00:12:31 -0400 Subject: [PATCH] Adding bandit check --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9553800..269cd38 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 .' } } }