checkStyle

This commit is contained in:
m1kkY8 2025-06-11 12:25:08 +02:00
parent f8ffeb728c
commit e31eb8b5f6

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('checkStyle') {
steps {
sh './gradlew checkstyleMain'
}
}
}
}