From cba1d50170f4f7f8632509bb3fc1b4fbb03469dc Mon Sep 17 00:00:00 2001 From: Teodora Mihoc Date: Thu, 21 Nov 2024 17:44:12 +0100 Subject: [PATCH] docs: remove markdown linter --- .github/workflows/markdown-style-checks.yml | 26 --------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/markdown-style-checks.yml diff --git a/.github/workflows/markdown-style-checks.yml b/.github/workflows/markdown-style-checks.yml deleted file mode 100644 index 8e7e2930..00000000 --- a/.github/workflows/markdown-style-checks.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "Linter for Markdown" - -on: - push: - branches: [main] - paths: - - 'docs-rtd/**' - pull_request: - paths: - - 'docs-rtd/**' - workflow_dispatch: - paths: - - 'docs-rtd/**' - -jobs: - markdown-lint: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - uses: DavidAnson/markdownlint-cli2-action@v16 - with: - config: "docs-rtd/.sphinx/.markdownlint.json" - globs: "docs-rtd/**/*.md" - continue-on-error: true