fix lint #95
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint_python | |
on: [pull_request, push] | |
jobs: | |
lint_python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- run: pip install --upgrade pip wheel | |
- run: pip install bandit "black[jupyter]" codespell flake8 flake8-2020 | |
isort mypy pytest pyupgrade | |
- run: bandit --recursive --skip B101,B102,B110,B112,B307,B404,B603,B607 . | |
- run: black --check . || true | |
- run: codespell --ignore-words-list="ans,claus,fith,nam,nd,ond,serie,te" | |
- run: flake8 . --count --max-complexity=66 --max-line-length=129 | |
--show-source --statistics | |
- run: pip install flake8-bugbear flake8-comprehensions flake8-return flake8-simplify | |
- run: flake8 . --count --exit-zero --max-complexity=66 --max-line-length=129 | |
--show-source --statistics | |
- run: isort --check-only --profile black . || true | |
- run: pip install setuptools | |
- run: pip install --editable . || pip install . | |
- run: mkdir --parents --verbose .mypy_cache | |
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true | |
- run: pytest . | |
- run: pytest --doctest-modules . | |
- run: shopt -s globstar && pyupgrade --py37-plus **/*.py || true |