This commit is contained in:
Milan Petrovic 2025-06-11 15:30:18 +02:00
parent 7d7186bfa2
commit 6794520057

2
Jenkinsfile vendored
View file

@ -13,6 +13,7 @@ pipeline {
agent { label 'vps-agent1' }
when { not {branch 'main' }}
steps {
echo "Syle Check"
sh './gradlew checkstyleMain'
}
}
@ -21,6 +22,7 @@ pipeline {
agent { label 'vps-agent1' }
when { not {branch 'main' }}
steps {
echo "Running tests"
sh './gradlew test'
}
}