Talent.less./Jenkinsfile
2020-12-04 22:01:02 +01:00

20 lines
253 B
Groovy

pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
stage('test') {
steps {
sh 'python --version'
}
}
}
}