Initial jenkisfile changes

This commit is contained in:
Svetlana Mancic 2025-06-02 09:06:00 +02:00
parent 58109e9022
commit 18921af344

10
Jenkinsfile vendored
View file

@ -0,0 +1,10 @@
pipeline {
agent agent1
stages {
stage ('Build') {
steps {
sh 'mvn checkstyle:check'
}
}
}
}