diff options
| author | Alex Grönholm <alex.gronholm@nextday.fi> | 2021-12-24 01:55:42 +0200 |
|---|---|---|
| committer | Alex Grönholm <alex.gronholm@nextday.fi> | 2021-12-24 01:55:42 +0200 |
| commit | bf15b29ee2fabfe8b720413be5bb929d5814cc97 (patch) | |
| tree | cf820402570c997165d7de46655236ee60be12a1 /.github/workflows/codeqa-test.yml | |
| parent | 6e4479d3aaf9b04c257e159f64028bc2cee89f1a (diff) | |
| download | wheel-git-bf15b29ee2fabfe8b720413be5bb929d5814cc97.tar.gz | |
Adopted isort and applied it to the codebase
Diffstat (limited to '.github/workflows/codeqa-test.yml')
| -rw-r--r-- | .github/workflows/codeqa-test.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index 730f7d5..adc83bf 100644 --- a/.github/workflows/codeqa-test.yml +++ b/.github/workflows/codeqa-test.yml @@ -18,9 +18,11 @@ jobs: path: ~/.cache/pip key: pip-lint - name: Install dependencies - run: pip install black pyproject-flake8 + run: pip install black isort pyproject-flake8 - name: Run black run: black --check --diff src tests + - name: Run isort + run: isort -c --diff src tests - name: Run flake8 run: pflake8 src tests |
