From 92c58dce572c15611408b4ff594bf8d8f3875382 Mon Sep 17 00:00:00 2001 From: n Date: Fri, 4 Oct 2024 00:00:28 +0200 Subject: [PATCH] add markdownlint to CI --- .forgejo/workflows/lint.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 6c20a39..e55bca7 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -12,6 +12,11 @@ jobs: - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code uses: actions/checkout@v4 + - name: Lint Markdown files + uses: actions/markdownlint-cli2-action@v17 + with: + globs: | + **/*.md - name: Create Python virtualenv run: | mkdir -p .cache