From c7601847a1d17bc4520d7864bceae7707ec1039a Mon Sep 17 00:00:00 2001 From: Kamil Gierszewski Date: Mon, 9 Sep 2024 15:09:40 +0200 Subject: [PATCH] github-actions: add checkpatch Signed-off-by: Kamil Gierszewski --- .checkpatch.conf | 27 +++++++++++++++++++++++++++ .github/workflows/checkpatch.yml | 15 +++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .checkpatch.conf create mode 100644 .github/workflows/checkpatch.yml diff --git a/.checkpatch.conf b/.checkpatch.conf new file mode 100644 index 000000000..fca13659b --- /dev/null +++ b/.checkpatch.conf @@ -0,0 +1,27 @@ +--max-line-length=80 +--no-tree + +--ignore AVOID_BUG +--ignore COMMIT_MESSAGE +--ignore FILE_PATH_CHANGES +--ignore PREFER_PR_LEVEL +--ignore SPDX_LICENSE_TAG +--ignore SPLIT_STRING + +--exclude .github +--exclude casadm +--exclude configure.d +--exclude doc +--exclude ocf +--exclude test +--exclude tools +--exclude utils +--exclude .gitignore +--exclude .gitmodules +--exclude .pep8speaks.yml +--exclude LICENSE +--exclude Makefile +--exclude README.md +--exclude configure +--exclude requirements.txt +--exclude version diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml new file mode 100644 index 000000000..2047c77fa --- /dev/null +++ b/.github/workflows/checkpatch.yml @@ -0,0 +1,15 @@ +name: checkpatch review +on: [pull_request] +jobs: + my_review: + name: checkpatch review + runs-on: ubuntu-latest + steps: + - name: 'Calculate PR commits + 1' + run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha }} + fetch-depth: ${{ env.PR_FETCH_DEPTH }} + - name: Run checkpatch review + uses: webispy/checkpatch-action@v9