diff --git a/.gitlab-ci/lint.yml b/.gitlab-ci/lint.yml index 170aa02ed..363671e15 100644 --- a/.gitlab-ci/lint.yml +++ b/.gitlab-ci/lint.yml @@ -6,6 +6,15 @@ yamllint: - yamllint --strict . except: ['triggers', 'master'] +vagrant-validate: + extends: .job + stage: unit-tests + script: + - curl -sL https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.deb -o /tmp/vagrant_2.2.4_x86_64.deb + - dpkg -i /tmp/vagrant_2.2.4_x86_64.deb + - vagrant validate --ignore-provider + except: ['triggers', 'master'] + ansible-lint: extends: .job stage: unit-tests