Skip to content

Commit 4e8adda

Browse files
ci: add basic lint workflow
1 parent 514f357 commit 4e8adda

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Code Quality
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: ShellCheck
11+
run: shellcheck scripts/*.sh || true
12+
- name: Python linting
13+
run: pip install pylint && pylint *.py || true

0 commit comments

Comments
 (0)