ZenProject/Jenkinsfile
Sami d730a1357d
All checks were successful
Zakaria/ZenProject/pipeline/head This commit looks good
Zenful/ZenProject/pipeline/head This commit looks good
fix: 4 - Updating Jenkinsfile
2024-09-28 19:02:18 -04:00

13 lines
196 B
Groovy

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