From 152bc2c0dbe517cf0682024af6883f252bf6077e Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Fri, 30 Dec 2022 20:47:32 +0000 Subject: [PATCH] fix: add pylint-exit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1aed174..898a236 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt && pip install -r requirements-dev.txt - name: Lint - run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt . + run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt . || pylint-exit $? continue-on-error: true - name: Unit Test run: |