add markdownlint to CI

This commit is contained in:
n 2024-10-04 00:00:28 +02:00
parent cf06632483
commit 92c58dce57
Signed by: n
GPG key ID: 510227DD6C502CE3

View file

@ -12,6 +12,11 @@ jobs:
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Lint Markdown files
uses: actions/markdownlint-cli2-action@v17
with:
globs: |
**/*.md
- name: Create Python virtualenv - name: Create Python virtualenv
run: | run: |
mkdir -p .cache mkdir -p .cache