Added isort and updated readme #92
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
# | |
# Test the source for formatting and code check (pass/fail) | |
# | |
name: Linting | |
on: push | |
jobs: | |
flake8-lint: | |
runs-on: ubuntu-latest | |
name: Flake8 code check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: py-actions/flake8@v2 | |
with: | |
path: "src/ tests/" | |
plugins: "flake8-bugbear flake8-black flake8-isort" |