We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266edae commit 1e38271Copy full SHA for 1e38271
1 file changed
β.github/workflows/lint.ymlβ
@@ -1,23 +1,36 @@
1
-name: Code Linting πβ‘
+name: Linting ππβ‘
2
3
on:
4
push:
5
pull_request:
6
workflow_dispatch:
7
8
jobs:
9
-
10
- lint:
+ ruff:
11
name: Ruff β‘π΅
12
13
runs-on: ubuntu-latest
14
15
steps:
16
17
- name: π₯ Checkout repo
18
uses: actions/checkout@v4
19
20
- name: Run Ruff checks β‘
21
uses: astral-sh/ruff-action@v3
22
with:
23
args: check
+
+ markdownlint:
24
+ name: Markdownlint ππ΅
25
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: π₯ Checkout repo
29
+ uses: actions/checkout@v4
30
31
+ - name: Run markdownlint-cli2-action π
32
+ uses: DavidAnson/markdownlint-cli2-action@v22
33
+ with:
34
+ globs: |
35
+ *.md
36
+ !test/*.md
0 commit comments