mieszkania5/Jenkinsfile

23 lines
493 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
// Run black to format all Python files
sh 'find . -name "*.py" -exec black {} +'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}