From c929e41bdf38fa12d96d75f48f1224690406bf2c Mon Sep 17 00:00:00 2001 From: Matthias Bernt <m.bernt@ufz.de> Date: Tue, 17 Dec 2024 14:20:00 +0100 Subject: [PATCH] fix --- .gitlab-ci.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c54c839..3fa5d98 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - spellcheck - - lint aspell: stage: spellcheck @@ -31,21 +30,3 @@ aspell: rules: - if: '$CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "merge_request_event"' allow_failure: false - - -prose-lint: - stage: lint - image: golang:latest - before_script: - # Install Vale - - curl -fsSL https://github.com/errata-ai/vale/archive/refs/tags/v3.9.1.tar.gz | tar xvz - - ls - - mv vale /usr/local/bin/vale - # Verify installation - - vale --version - script: - # Run Vale on all Markdown files in the repository - - vale --output=CLI --glob='*.md' . - rules: - - if: '$CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "merge_request_event"' - allow_failure: false -- GitLab