diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 67925f3..8bd61cc 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,10 +21,9 @@ jobs: python -m pip install --upgrade pip pip install pylint pip install -r src/requirements/dev.txt - - name: Analysing the code with pylint - run: | - pylint -d W0221 $(git ls-files 'src/biodm/*.py') --exit-zero - name: Run tests run: | pytest src/biodm/tests/ - + - name: Analysing the code with pylint + run: | + pylint -d W0221 $(git ls-files 'src/biodm/*.py') --exit-zero