Update flake8 to work with black #59
Workflow file for this run
This file contains hidden or 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 -r test-requirements.txt | |
| - run: bandit --recursive --skip B101 . # B101 is assert statements | |
| - run: black --check . | |
| - run: codespell --ignore-words-list="fo" | |
| - run: flake8 . --count --max-complexity=12 --max-line-length=89 --show-source --statistics | |
| - run: isort --check-only --profile black . | |
| - run: | | |
| pip install --editable . | |
| mkdir --parents --verbose .mypy_cache | |
| - run: mypy --ignore-missing-imports --install-types --non-interactive . | |
| - run: pytest . | |
| - run: safety scan |