From edaa6699190c2c4f8b4e8e363d550551c31b61f3 Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Sat, 30 Jan 2021 13:47:27 +0100 Subject: [PATCH] Remove test job --- .gitlab-ci.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9ade6f..6dbc62c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,9 @@ stages: - lint - - test cache: key: $CI_COMMIT_REF_SLUG paths: - - .cache/pip - node_modules/ lint: @@ -15,12 +13,3 @@ lint: - npm install prettier --no-save script: - npx prettier '**/*.yml' --check - -syntax-test: - stage: test - image: python:3.7 - before_script: - - pip install ansible --quiet - - ansible-galaxy install -r requirements.yml - script: - - ansible-playbook playbook.yml --syntax-check