mieszkania5/Jenkinsfile

23 lines
438 B
Plaintext
Raw Normal View History

2023-10-24 17:50:54 +02:00
pipeline {
2023-10-24 17:59:02 +02:00
agent {
2023-10-24 18:29:49 +02:00
docker { image 'alpine/flake8:3.5.0' }
2023-10-24 17:59:02 +02:00
}
2023-10-24 17:50:54 +02:00
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
2023-10-24 18:29:49 +02:00
sh 'flake check_flat_price.py'
}
2023-10-24 17:50:54 +02:00
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}