ZenProject/Jenkinsfile
Sami df67108c10
Some checks failed
Zenful/ZenProject/pipeline/head There was a failure building this commit
fix: adding Jenkinsfile
2024-09-28 17:13:43 -04:00

14 lines
197 B
Groovy

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