Skip to content

Merge branch 'enhancement/comprehensive-refactoring-v2' of https://gi… #280

Merge branch 'enhancement/comprehensive-refactoring-v2' of https://gi…

Merge branch 'enhancement/comprehensive-refactoring-v2' of https://gi… #280

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black isort flake8 pydocstyle
- name: Run Black
run: black --check src tests
- name: Run isort
run: isort --check-only src tests
- name: Run flake8
run: flake8 src tests
- name: Check docstrings
run: pydocstyle src