modify checkstyle to run on pull request

This commit is contained in:
TomPGrid 2025-03-04 10:27:13 +01:00
parent e0551b445b
commit 873d21dd7b

3
Jenkinsfile vendored
View file

@ -3,6 +3,9 @@ pipeline {
stages {
stage('Checkstyle') {
when {
changeRequest()
}
agent {
docker { image 'maven:3.8.5-openjdk-17' }
}