added test

This commit is contained in:
joeyabou 2020-03-15 17:03:12 -04:00
parent 8300f3185d
commit cf481b5ea9

8
Jenkinsfile vendored
View file

@ -6,5 +6,13 @@ pipeline {
sh './mvnw package'
}
}
stage('test') {
steps {
sh '''./mvnw test
'''
}
}
}
}