diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 6ed19dd..8e9bdc7 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -19,4 +19,6 @@ jobs: - name: Install dependencies run: /root/.local/bin/poetry install --with dev - name: Analysing the code with Pylint - run: pylint $(git ls-files '*.py') + run: | + /root/.local/bin/poetry shell + pylint $(git ls-files '*.py')