dotfiles/Jenkinsfile

12 lines
159 B
Groovy

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