From 0fb0f9ca6beb9d01cb0326ec10cf159aeb4b94f8 Mon Sep 17 00:00:00 2001 From: Tom H <116467716+Wemmy0@users.noreply.github.com> Date: Sun, 11 Feb 2024 21:58:54 +0000 Subject: [PATCH] Update pylint.yml Fix dependencies --- .github/workflows/pylint.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1c3c61a..2a144a7 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -14,10 +14,13 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + - name: Install system dependencies + run: | + sudo apt install libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-4.0 - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pylint + pip install pylint mysql-connector-python pycairo PyGObject - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py') --errors-only