Require isort formatting in CI

This commit is contained in:
Tibor Leupold 2022-11-29 10:36:38 -08:00
Родитель 39dd045506
Коммит e8ac9fd073
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -92,10 +92,8 @@ jobs:
- name: Run linting
run: |
flake8 .
isort . --check-only
black . --check
- name: Run isort (allowed to fail)
run: isort . --check-only
continue-on-error: true
- name: Run type checks
run: mypy network-api
- name: Run Tests