-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (52 loc) · 1.14 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
name: Lint
on:
- pull_request
- push
permissions:
contents: read
pull-requests: write
jobs:
actionlint:
name: GitHub Actions
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: reviewdog/action-actionlint@v1
markdownlint:
name: Markdown
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v19
with:
globs: |
**/*.md
!README.md
yamllint:
name: YAML
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run yamllint
uses: frenck/[email protected]
with:
strict: true
shellcheck:
name: Shell scripts
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run shellcheck
uses: ludeeus/[email protected]
env:
SHELLCHECK_OPTS: -o all
checkmake:
name: Makfile
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run checkmake
uses: Uno-Takashi/checkmake-action@main