Skip to content

Fix readline not on windows #84

Fix readline not on windows

Fix readline not on windows #84

Workflow file for this run

name: Pylint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- 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 $(git ls-files '*.py' -- ':!:releases/*') --disable=C0103,R0913,R0903,R0902,W0718,W0719,W0702,E0213,E0401,W0642,W0401,R0914,R0912,R0915,R1702,E0211,R0801,W0511