Skip to content

Clean up /static directory #95

Clean up /static directory

Clean up /static directory #95

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
pip install pylint-flask
- name: Analysing the code with pylint
run: |
pylint --fail-under=9.85 --load-plugins pylint_flask --max-line-length=410 $(git ls-files '*.py' ':!static') --disable C0301,C0116,C0114,E0602,C0302,C0115,C0103,W0401,C0209,R0912,R1702,W0614,E1101