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