diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 371719a..3b54c38 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -15,7 +15,9 @@ jobs: add-apt-repository ppa:deadsnakes/ppa apt install -y python3.11 gcc python3-dev - name: Install Poetry - run: curl -sSL https://install.python-poetry.org | python3.11 - + run: | + curl -sSL https://install.python-poetry.org | python3.11 - + export PATH="/root/.local/bin:$PATH" - name: Install dependencies run: poetry install --with dev - name: Analysing the code with Pylint