From 5615fe341f6339f4b7cb75921549342892cd6b42 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 08:38:48 -0400 Subject: [PATCH] fix(actions): hopefully fixed the venv not being activated --- .forgejo/workflows/pylint.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 6ed19dd..8e9bdc7 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -19,4 +19,6 @@ jobs: - name: Install dependencies run: /root/.local/bin/poetry install --with dev - name: Analysing the code with Pylint - run: pylint $(git ls-files '*.py') + run: | + /root/.local/bin/poetry shell + pylint $(git ls-files '*.py')