add withChecks into pipeline

This commit is contained in:
Nilton Constantino 2025-02-19 14:13:24 +00:00
parent 8d620984e3
commit 9c34ce094f

2
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
steps {
withChecks(name: 'Test') {
echo 'Testing..'
sh './gradlew clean test'
sh './gradlew clean jacocoTestReport jacocoTestCoverageVerification'
junit '**/build/test-results/test/TEST-*.xml'
}
}