From a942ae517b48645ddadf38772c0d31dd0a59a8c4 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 12:33:06 -0400 Subject: [PATCH] fix(actions): trying poetry again --- .forgejo/workflows/pylint.yaml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 59e9243..5985cff 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -15,12 +15,8 @@ jobs: add-apt-repository ppa:deadsnakes/ppa apt install -y python3.11 gcc python3.11-dev python3.11-venv - name: Install Poetry - run: | - curl -sSL https://install.python-poetry.org | python3.11 - - source $HOME/.poetry/env + run: curl -sSL https://install.python-poetry.org | python3.11 - - name: Install dependencies - run: | - poetry install --with dev + run: poetry install --with dev - name: Analysing the code with Pylint - run: | - poetry run pylint $(git ls-files '*.py') + run: poetry run pylint $(git ls-files '*.py')