Add black format check

This will provide a useful ci check before users can merge.
This commit is contained in:
Nathan Page 2020-08-02 15:51:15 -04:00
parent 1d591e388d
commit 9a0044e880
2 changed files with 5 additions and 0 deletions

View file

@ -21,6 +21,9 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
poetry install
- name: Format check with black
run: |
make format
- name: Typecheck with mypy
run: |
make typecheck