From 5deca40925c34dd4915b504d47cac89c9cef6182 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Wed, 1 Dec 2021 09:51:51 -0800 Subject: [PATCH] add pylint but do not stop on issues --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82e61f8..0860cba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,5 +20,7 @@ jobs: run: | python -m pip install --upgrade pip pip install markdown pdoc3 webencodings pyparsing twine autopep8 pylint pytest + - name: Run pylint + run: pylint --exit-zero meshtastic - name: Run tests with pytest run: pytest