diff --git a/.github/workflows/py-ci.yml b/.github/workflows/py-ci.yml index 9ca0d849474..ffddc520620 100644 --- a/.github/workflows/py-ci.yml +++ b/.github/workflows/py-ci.yml @@ -17,10 +17,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip setuptools - python -m pip install 'pylint<3' 'pycodestyle>=2.6.1' + python -m pip install 'pylint==3.2.7' 'pycodestyle>=2.6.1' - name: Run pylint run: | - pylint $(find -name '*.py' -not -path './venv/*') + pylint . - name: Run pycodestyle run: | pycodestyle $(find -name '*.py' -not -path './venv/*')