ium_458023/Jenkinsfile

10 lines
166 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world from GitHub!'
}
}
}
}