summaryrefslogtreecommitdiff
path: root/.github/workflows/codeqa-test.yml
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-12-29 02:07:17 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-12-29 02:07:17 +0200
commit030d94ff85f006ea019606a232e77e9daf8a55f3 (patch)
tree6ea257247925b3b59f3ea3f9af8c4f578de7e244 /.github/workflows/codeqa-test.yml
parentfb4dc7f95d26d34f7c3ba9ea284a47addbf3eccc (diff)
downloadwheel-git-030d94ff85f006ea019606a232e77e9daf8a55f3.tar.gz
Eliminated pyproject.toml entirely
Even with the [build-system] section gone, pip would still use the PEP 517 process, leading to a chicken and egg problem with setuptools.
Diffstat (limited to '.github/workflows/codeqa-test.yml')
-rw-r--r--.github/workflows/codeqa-test.yml6
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: