Skip to content

Commit fe15afe

Browse files
committed
Github workflow to run pylint against debug tests
1 parent f42fb21 commit fe15afe

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/debug.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on: pull_request
2+
3+
name: Check Code Style (checkpatch)
4+
5+
jobs:
6+
check:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout Code
10+
uses: actions/checkout@v3
11+
with:
12+
fetch-depth: 0
13+
- name: Install required packages (pip3)
14+
run: |
15+
pip3 install pylint
16+
- name: Run pylint
17+
run: make -C debug pylint

0 commit comments

Comments
 (0)