Add checkpatch testing

This commit is contained in:
ISSOtm
2020-02-11 00:50:04 +01:00
parent 8cee3c3c3e
commit 7471f46a07

17
.github/workflows/checkpatch.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: "Code style checking"
on: pull_request
jobs:
checkpatch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up checkpatch
run: |
wget 'https://raw.githubusercontent.com/torvalds/linux/master/scripts/checkpatch.pl'
chmod +x checkpatch.pl
touch const_structs.checkpatch
touch spelling.txt
- name: Checkpatch
run: |
make checkpatch CHECKPATCH=./checkpatch.pl