Diff between b74d30fb9f72eafb8d98f9faa4327ce1a66ff4b0 and 55b02fe5a2bd986c4188ecd4ee2a92b1c3837543

Changed Files

File Additions Deletions Status
.github/workflows/checkpatch.yml +14 -0 added

Full Patch

diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml
new file mode 100644
index 0000000..42ef7d0
--- /dev/null
+++ b/.github/workflows/checkpatch.yml
@@ -0,0 +1,14 @@
+name: Checkpatch on PR
+
+on: [pull_request]
+
+jobs:
+  my_review:
+    name: checkpatch
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v1
+    - name: Run checkpatch review
+      uses: webispy/checkpatch-action@master
+      env:
+        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}