Skip to content

update estimated raw capacity values #445

update estimated raw capacity values

update estimated raw capacity values #445

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
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
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint --fail-under=9.5 --fail-on E --disable=R,C --disable=C0301,R0904,R0903,C0114,C0115,C2801,C0411,R1732,W1514,C0207,W0123,W1510,W0613,W0511 $(git ls-files '*.py')