diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index e3d2ea6..fa5f89c 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -17,10 +17,6 @@ jobs: - name: Install Poetry run: curl -sSL https://install.python-poetry.org | python3.11 - - name: Install dependencies - run: | - export PATH="$HOME/.local/bin:$PATH" - poetry install --with dev + run: python3.11 -m poetry install --with dev - name: Analysing the code with Pylint - run: | - export PATH="$HOME/.local/bin:$PATH" - poetry run pylint $(git ls-files '*.py') + run: python3.11 -m poetry run pylint $(git ls-files '*.py')