Skip to content
Snippets Groups Projects
Select Git revision
  • f473e2d27a7cfe6f6c7f901b6e619a20890b1a2b
  • master default
2 results

docker-compose.yml

Blame
  • Jenkinsfile 449 B
    pipeline {
        agent any
        stages {
            stage('install') {
                steps {
                    sh 'pip install -r tests/requirements.txt'
                    sh 'ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles'
                    sh 'molecule dependency'
                }
            }
            stage('test') {
                steps {
                    sh 'pre-commit run --all-files'
                }
            }
        }
    }