Add black to CI but allow to fail

This is so this branch can be reviewed in isolation and the next
PR contains all the changes with the formatter and requires it in CI.
This commit is contained in:
Tibor Leupold 2022-11-11 14:23:10 -08:00
Родитель df3116c9a4
Коммит b85266d93c
1 изменённых файлов: 3 добавлений и 0 удалений

3
.github/workflows/continous-integration.yml поставляемый
Просмотреть файл

@ -91,6 +91,9 @@ jobs:
python network-api/manage.py compilemessages
- name: Run linting
run: flake8 tasks.py network-api/
- name: Run format check
run: black . --check
continue-on-error: true
- name: Run type checks
run: mypy network-api
- name: Run Tests