diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ad2678e..0d670d0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -71,10 +71,10 @@ jobs: if: runner.os == 'Windows' run: .\prj\venv\Scripts\mypy.exe --check-untyped-defs -p test -p src - #- name: Run linter with pylint (Linux) - # if: runner.os == 'Linux' - # run: ./prj/script/venv/bin/python -m pylint src + - name: Run linter with pylint (Linux) + if: runner.os == 'Linux' + run: ./prj/venv/bin/python -m pylint --errors-only src test - #- name: Run linter with pylint (Windows) - # if: runner.os == 'Windows' - # run: .\prj\venv\Scripts\python.exe -m pylint src + - name: Run linter with pylint (Windows) + if: runner.os == 'Windows' + run: .\prj\venv\Scripts\python.exe -m pylint src --errors-only src test