Merge pull request #41 from jandom/jandom/fix/linting-with-black #31
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
black: | |
name: Run black | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' # Specify the Python version you are using | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install black isort | |
- name: Run black | |
run: | | |
black --check . | |
isort: | |
name: Run isort | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' # Specify the Python version you are using | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install black isort | |
- name: Run isort | |
run: |- | |
isort --check-only --profile black . | |
mypy: | |
name: Run mypy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' # Specify the Python version you are using | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ".[tests]" | |
- name: Run mypy | |
run: |- | |
mkdir -p .mypy_cache | |
mypy --install-types --non-interactive src tests |