CI: add isort --check to validate job (#12727)

This commit is contained in:
Daniël de Kok 2023-06-16 00:10:25 +02:00 committed by GitHub
parent e2b70df012
commit e73c1a89bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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