From 281c60a738e4b4b9c73bd7612098715ca08cbc72 Mon Sep 17 00:00:00 2001 From: Vegard Berg Date: Thu, 21 Jul 2022 21:30:15 +0200 Subject: [PATCH] Fixed Pylint to work w/ Poetry --- .github/workflows/pylint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 5abdb30..3054fbb 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -17,7 +17,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pylint + pip install poetry + poetry install - name: Analysing the code with pylint run: | - pylint $(git ls-files '*.py') + poetry run pylint $(git ls-files '*.py')