-
Notifications
You must be signed in to change notification settings - Fork 1
72 lines (65 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Linter
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
luacheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install requirements
run: |
sudo apt-get install -y lua-check luarocks
sudo luarocks install lanes
- name: run luacheck
run: |
luacheck .
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11.2"
- uses: BSFishy/pip-action@v1
with:
packages: |
Pillow
beautifulsoup4
i3ipc
mypy
pylint
python-qbittorrent
requests
watchdog
- name: run pylint
run: |
readarray -t files < <(grep -rIzlE '^#![[:blank:]]*/bin/python3' .)
pylint -j 0 "${files[@]}"
- name: run mypy
run: |
readarray -t files < <(grep -rIzlE '^#![[:blank:]]*/bin/python3' .)
for file in "${files[@]}"; do
mypy --install-types --non-interactive --color-output "$file"
done
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install requirements
run : |
sudo apt-get install -y shellcheck
- name: run shellcheck
run: |
rm -r .git
readarray -t files < <(grep -rIzlE '^#![[:blank:]]*/bin/(bash|sh)' .)
shellcheck "${files[@]}"
markdown-link-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: run markdown-link-checker
run: bash link-check