diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index c73e032..045aba8 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 pylint Pillow customtkinter + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py')