Skip to content

Fix everything for working version 1.1.1 #331

Fix everything for working version 1.1.1

Fix everything for working version 1.1.1 #331

Workflow file for this run

name: Pylint
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --disable=C0103,C0114,C0209,E0401,E1101,W0212,W0612,W1202,R1737,R0902,W0223,W0621,W0102,W0104,W0221,W0102,W0613,E1133,E0611,R0903,R0913,C0115,W0246 $(git ls-files 'src/')