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