CI: add isort --check to validate job

This commit is contained in:
Daniël de Kok 2023-06-15 09:34:57 +02:00
parent e2b70df012
commit 4cb741b4a2

View File

@ -37,6 +37,10 @@ jobs:
run: | run: |
python -m pip install black -c requirements.txt python -m pip install black -c requirements.txt
python -m black spacy --check python -m black spacy --check
- name: isort
run: |
python -m pip install isort -c requirements.txt
python -m isort spacy --check
- name: flake8 - name: flake8
run: | run: |
python -m pip install flake8==5.0.4 python -m pip install flake8==5.0.4