Files
test/Jenkinsfile
2025-07-16 18:24:23 +02:00

12 lines
147 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo "hello wordl"
sh "python3 --version"
}
}
}
}