Skip to content

Merge branch 'main' into dependabot/pip/werkzeug-3.0.3 #765

Merge branch 'main' into dependabot/pip/werkzeug-3.0.3

Merge branch 'main' into dependabot/pip/werkzeug-3.0.3 #765

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
continue-on-error: true
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
continue-on-error: true
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
continue-on-error: true
run: |
pylint `ls -R|grep .py$|xargs`