From 656c861d14eb169aa6c15aa9b99ea27bd2a2d729 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 12:39:51 -0400 Subject: [PATCH] fix(actions): ensurepath after installing poetry --- .forgejo/workflows/pylint.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 2176f80..856f0a8 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -17,8 +17,9 @@ jobs: - name: Install Poetry run: | python3.11 -m pip install --user pipx - python3.11 -m pipx ensurepath python3.11 -m pipx install poetry==1.2.0 + python3.11 -m pipx ensurepath + bash - name: Install dependencies run: poetry install --with dev - name: Analysing the code with Pylint