ium_444417/Jenkinsfile
2022-03-24 16:08:04 +01:00

10 lines
168 B
Groovy

pipeline {
agent any
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
}
}