Skip to content

Github workflow to run pylint against debug tests #3

Github workflow to run pylint against debug tests

Github workflow to run pylint against debug tests #3

Workflow file for this run

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 (apt-get)
run: |
pip3 install pylint
- name: Run pylint
run: make -C debug pylint