We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb2a85 commit dcf4134Copy full SHA for dcf4134
1 file changed
Jenkinsfile
@@ -27,6 +27,16 @@ pipeline {
27
sh 'mvn -B -Drat.skip=true -DskipTests verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=Huntonion_commons-cli -Dsonar.branch.name=dev -Dsonar.branch.target=dev'
28
}
29
30
+ stage('Test') {
31
+ steps {
32
+ sh 'mvn -Drat.skip=true test'
33
+ }
34
+ post {
35
+ always {
36
+ junit 'target/surefire-reports/*.xml'
37
38
39
40
41
42
0 commit comments