Skip to content

Commit d97ddf8

Browse files
ci: add mdformat check to linting workflow
1 parent 7d9318a commit d97ddf8

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/linting.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,20 @@ jobs:
9797

9898
- name: CTCache Stats
9999
run: clang-tidy-cache --show-stats
100+
101+
markdown-format:
102+
name: Markdown Formatting
103+
runs-on: ubuntu-latest
104+
105+
steps:
106+
- name: Checkout Code
107+
uses: actions/checkout@v4
108+
109+
- name: Install uv
110+
uses: astral-sh/setup-uv@v4
111+
112+
- name: Install dependencies
113+
run: uv sync --group dev
114+
115+
- name: Check markdown formatting
116+
run: uv run mdformat --check docs/

0 commit comments

Comments
 (0)