Files
test/Jenkinsfile
nico 2b59e5ba85
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Update Jenkinsfile
2025-07-31 20:11:21 +02:00

10 lines
142 B
Groovy

pipeline {
agent any
stages {
stage('Test') {
steps {
sh 'echo hi'
}
}
}
}