mieszkania5/Jenkinsfile
2023-10-24 18:45:59 +02:00

23 lines
446 B
Groovy

pipeline {
agent {
docker { image 'python:3.10.6-slim-bullseye' }
}
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
sh 'check_flat_price.py'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}