mieszkania5/Jenkinsfile

22 lines
393 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'apt install black'
sh 'black ./'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}