Skip to content

feat: added configMode toggle to ControlPadManager class #46

feat: added configMode toggle to ControlPadManager class

feat: added configMode toggle to ControlPadManager class #46

Workflow file for this run

name: Pylint
on:
pull_request:
paths:
- '**.py'
push:
paths:
- '**.py'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install Flask
pip install Pillow
pip install pylint
pip install PyQt5
pip install PySDL2
pip install requests
pip install SQLAlchemy
pip install waitress
- name: Analysing the code with pylint
run: |
pylint --extension-pkg-whitelist=dbus,PyQt5 $(git ls-files '*.py')