Skip to content

refactor: static analysis #292

refactor: static analysis

refactor: static analysis #292

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint-python:
name: Pylint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
python -m pip install -e .[dev]
- name: Analysing the code with pylint
run: |
pylint --output-format=colorized $(git ls-files '*.py')
lint-python-format:
name: Python format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
- uses: psf/black@stable
with:
options: --check --diff
- uses: isort/isort-action@master
with:
configuration: --check --diff