Update 'Jenkinsfile'

This commit is contained in:
Piotr Szkudlarek 2023-10-24 18:43:07 +02:00
parent 05d24b1fb5
commit 33a4bb1a6b

14
Jenkinsfile vendored
View File

@ -2,22 +2,10 @@ pipeline {
agent {
docker { image 'python:3' }
}
stages {
stage('Build') {
steps {
sh 'pip install black'
}
}
stage('Test') {
steps {
echo 'Testing..'
sh 'black ./'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
sh 'pip --version'
}
}
}