Skip to content

Restoring version 2.3 #523

Restoring version 2.3

Restoring version 2.3 #523

Workflow file for this run

name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install -r requirements.txt
- run: codespell --ignore-words-list="ect,ether,nd,tha" --quiet-level=2 README.md $(find . -name '*.py')
- run: isort -c --profile black $(find . -name '*.py')
- run: black --check $(find . -name '*.py')
- run: flake8 $(find . -name '*.py')
- run: mypy $(find . -name '*.py')