diff options
| author | John L. Villalovos <john@sodarock.com> | 2021-05-22 08:56:13 -0700 |
|---|---|---|
| committer | John L. Villalovos <john@sodarock.com> | 2021-05-22 08:58:32 -0700 |
| commit | dda646e8f2ecb733e37e6cffec331b783b64714e (patch) | |
| tree | 281ca82cd7be47b22f062067e462602b546e5f58 /.github | |
| parent | 1508eb78a03b8d9429e474b7a6814ffe74517abb (diff) | |
| download | gitlab-dda646e8f2ecb733e37e6cffec331b783b64714e.tar.gz | |
chore: add an isort tox environment and run isort in CI
* Add an isort tox environment
* Run the isort tox environment using --check in the Github CI
https://pycqa.github.io/isort/
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 556a186..4d8e741 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -32,3 +32,5 @@ jobs: run: tox -e pep8 - name: Run mypy static typing checker (http://mypy-lang.org/) run: tox -e mypy + - name: Run isort import order checker (https://pycqa.github.io/isort/) + run: tox -e isort -- --check |
