Enforce 'isort' formatter

This commit is contained in:
Oleh Prypin
2022-08-08 21:41:52 +02:00
parent d6375e5413
commit a66a7ba474
4 changed files with 12 additions and 0 deletions

View File

@@ -66,6 +66,9 @@ jobs:
- name: Install Node dependencies
run: |
npm install -g markdownlint-cli jshint csslint
- name: Check with isort
if: always()
run: python -m tox -e isort && git diff --exit-code
- name: Check with black
if: always()
run: python -m tox -e black && git diff --exit-code