From e02a38b4f5a859b5d9de1760096facfa4374a52c Mon Sep 17 00:00:00 2001 From: Stelios Tsampas Date: Sun, 12 Sep 2021 14:54:57 +0300 Subject: [PATCH] Install dependencies before PyLint --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3cd26213..75f47d95 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -78,6 +78,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint + pip install -r requirements.txt - name: Analysing the code with pylint run: | pylint rare --disable=R,C,E0611,I1101,W1203,W1201,W0201 --ignore=ui,singleton.py,json_formatter.py --extension-pkg-whitelist=PyQt5