Skip to content

Commit 7150a9e

Browse files
committed
Add rumdl
1 parent 37cbcd9 commit 7150a9e

5 files changed

Lines changed: 116 additions & 97 deletions

File tree

.github/workflows/rust.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,8 @@ jobs:
4949
- uses: swatinem/rust-cache@v2
5050
- name: rustlings dev check
5151
run: cargo dev check --require-solutions
52+
rumdl:
53+
runs-on: ubuntu-latest
54+
steps:
55+
- uses: actions/checkout@v6
56+
- uses: rvben/rumdl@v0

.github/workflows/website.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ on:
99
- .github/workflows/website.yml
1010

1111
jobs:
12+
rumdl:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v6
16+
- uses: rvben/rumdl@v0
1217
build:
18+
needs: rumdl
1319
defaults:
1420
run:
1521
working-directory: website
@@ -28,7 +34,6 @@ jobs:
2834
uses: actions/upload-pages-artifact@v4
2935
with:
3036
path: website/public/
31-
3237
deploy:
3338
needs: build
3439
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment

.rumdl.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[global]
2+
output-format = "full"
3+
disable = ["MD013", "MD057"]
4+
5+
[per-file-ignores]
6+
"website/content/_index.md" = ["MD041"]
7+
"website/content/**/*.md" = ["MD028", "MD033"]

0 commit comments

Comments
 (0)