From fe15afe59efbd4a94fbd0f0855825e45a11775a6 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Tue, 27 Jun 2023 09:32:05 -0700 Subject: Github workflow to run pylint against debug tests --- .github/workflows/debug.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/debug.yml (limited to '.github') diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml new file mode 100644 index 0000000..29ca5b2 --- /dev/null +++ b/.github/workflows/debug.yml @@ -0,0 +1,17 @@ +on: pull_request + +name: Check Code Style (checkpatch) + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Install required packages (pip3) + run: | + pip3 install pylint + - name: Run pylint + run: make -C debug pylint -- cgit v1.1