dotfiles/Jenkinsfile

12 lines
159 B
Plaintext
Raw Normal View History

2021-08-31 15:04:52 +02:00
pipeline {
agent any
stages {
stage('lint') {
steps {
sh 'ansible-lint dotfiles.yml'
}
}
}
}