From 173728ffdbbeaa62462adc676b27b01322497ea2 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 12:46:59 -0400 Subject: [PATCH] fix(actions): trying to use python3.11 -m to run poetry --- .forgejo/workflows/pylint.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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')