mieszkania5/Jenkinsfile
2023-10-24 18:43:53 +02:00

23 lines
432 B
Groovy

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