Add isort to CI pipeline

This commit is contained in:
Milan Stute
2020-12-02 16:18:57 +01:00
parent 2f0cbe1a8f
commit 91e204f8a2
7 changed files with 29 additions and 11 deletions
+4
View File
@@ -22,6 +22,10 @@ jobs:
- name: Install package
run: |
pip install -e .
- name: Check format with isort
run: |
pip install isort
isort -c opendrop/**.py
- name: Check format with black
run: |
pip install black