From 7a94c6c6238b0c6003126c6ad2584e1b3a65268e Mon Sep 17 00:00:00 2001 From: Clair Mould <86794332+clmould@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:48:49 +0000 Subject: [PATCH] Add Pylint run to build --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6651ffe0..b05a7f9a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,3 +37,7 @@ jobs: - name: Test with PyTest run: | python -m pytest --cov=inflammation.models tests/test_models.py + + - name: Check style with Pylint + run: | + python3 -m pylint --fail-under=0 --reports=y inflammation \ No newline at end of file