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