From 1b4c1634b6699c58efc53acb5ea22d33ea8b65ca Mon Sep 17 00:00:00 2001 From: Ableytner Date: Sun, 10 Mar 2024 03:14:27 +0100 Subject: [PATCH] install dependencies in test --- .github/workflows/pylint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 42318a9..f50c570 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -18,6 +18,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py')