-
-
Notifications
You must be signed in to change notification settings - Fork 108
43 lines (43 loc) · 1.07 KB
/
linter.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
---
name: Lint and format everything
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
- name: Install markdownlint
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint "**/*.md"
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check code with ruff
uses: chartboost/ruff-action@v1
with:
version: 0.5.6
args: check
src: "."
deadcode:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deadcode
run: pip install deadcode
- name: Run deadcode
run: deadcode .