Another fix to the docstring #71
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: format | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install isort and black | |
run: pip install isort black | |
- name: Run black | |
run: black . --check --verbose --diff --color --exclude="/*.ipynb/" | |
- name: Run isort | |
run: isort . --check --diff --profile black | |
- name: flake8 Lint | |
uses: py-actions/flake8@v2 | |
with: | |
ignore: "F401" | |
max-line-length: "88" | |
plugins: "flake8-bugbear flake8-black" |