ZenProject/Jenkinsfile
dadgam3er 3c07bb12d6
All checks were successful
jenkins/ZenProject/pipeline/head This commit looks good
fix: 15
2024-09-30 22:36:44 -04:00

12 lines
195 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
// This runs the Maven test phase
sh 'mvn test'
}
}
}
}