From 55b02fe5a2bd986c4188ecd4ee2a92b1c3837543 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 24 Apr 2025 15:23:10 -0400 Subject: [PATCH] workflows: Add checkpatch action This adds checkpatch action rather replacing the custom CI one which will be going to be disabled. --- .github/workflows/checkpatch.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/checkpatch.yml diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml new file mode 100644 index 000000000..42ef7d03e --- /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 }} -- 2.47.3