mieszkania5/Jenkinsfile
2023-10-24 18:29:49 +02:00

23 lines
438 B
Groovy

pipeline {
agent {
docker { image 'alpine/flake8:3.5.0' }
}
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
sh 'flake check_flat_price.py'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}