From 74b0225b9e84ca9ab9c4b1ee935041447642594e Mon Sep 17 00:00:00 2001 From: AntwortEinesLebens Date: Sun, 12 Jan 2025 17:56:32 +0100 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=A4=96=20Add=20MkDocs=20plugin=20fo?= =?UTF-8?q?r=20mdformat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/format.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 8b0f37a..55c8851 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -35,10 +35,12 @@ jobs: with: python-version: '3.13' cache: pip - - name: Install Mdformat - run: pip install mdformat - - name: Check Markdown formatting - run: mdformat --check . + - name: Install Mdformat and MkDocs plugin + run: pip install mdformat-mkdocs + - name: Check Markdown formatting except the documentation + run: mdformat --check --no-extensions AUTHORS.md README.md + - name: Check Markdown formatting for the documentation + run: mdformat --check ./docs/ rustfmt: name: Check Rust formatting runs-on: ubuntu-latest