dotfiles/Jenkinsfile
Johannes Rothe fb655f347e
All checks were successful
dotfiles/pipeline/head This commit looks good
Add Jenkinsfile with ansible-lint step
2021-08-31 15:04:52 +02:00

12 lines
159 B
Groovy

pipeline {
agent any
stages {
stage('lint') {
steps {
sh 'ansible-lint dotfiles.yml'
}
}
}
}