diff options
Diffstat (limited to '.github/workflows/codeqa-test.yml')
| -rw-r--r-- | .github/workflows/codeqa-test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index 84efd64..a954191 100644 --- a/.github/workflows/codeqa-test.yml +++ b/.github/workflows/codeqa-test.yml @@ -18,13 +18,13 @@ jobs: path: ~/.cache/pip key: pip-lint - name: Install dependencies - run: pip install black isort pyproject-flake8 + run: pip install black isort flake8 - name: Run black - run: black --check --diff src tests + run: black --check --diff -t py37 src tests - name: Run isort run: isort -c --diff src tests - name: Run flake8 - run: pflake8 src tests + run: flake8 src tests test: strategy: |
