testing/Jenkinsfile
Jeff Baskin 389624b762
All checks were successful
MoreThanText/testing/pipeline/head This commit looks good
updated jenkinsfile.
2024-07-30 19:35:50 -04:00

11 lines
118 B
Groovy

pipeline {
agent any
stages {
stage('Example') {
steps {
echo 'hello world'
}
}
}
}