From d4863bdb3c62a46c8e94719639c3ce622e01d981 Mon Sep 17 00:00:00 2001 From: angristan Date: Mon, 25 Feb 2019 22:59:24 +0100 Subject: [PATCH] gitlab-ci: add vagrant linting --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6961880..2f4db5f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: debian:buster-slim stages: - Bash linting + - Vagrant linting shellcheck: stage: Bash linting @@ -9,3 +10,10 @@ shellcheck: - apt-get update - apt-get install -y shellcheck - shellcheck -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009 openvpn-install.sh + +vagrant validate: + stage: Vagrant linting + script: + - apt-get update + - apt-get install -y vagrant + - vagrant validate