Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
Fix dependencies
  • Loading branch information
Wemmy0 authored Feb 11, 2024
1 parent 24d5d89 commit 0fb0f9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0fb0f9c

Please sign in to comment.