summaryrefslogtreecommitdiff
path: root/.github/workflows/pythonpackage.yml
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 07:53:43 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 07:53:43 +0800
commitb4b238057e7913c93245b484bdd50131dafd71f3 (patch)
treea3394cfe902ce7edd07c89420c21c13274a2d295 /.github/workflows/pythonpackage.yml
parenta7c5d887e943aa51f2270e517954c024a8c01500 (diff)
downloadgitpython-b4b238057e7913c93245b484bdd50131dafd71f3.tar.gz
Revert "Remove flake8 linting in favor of `black` formatting"
This reverts commit a7c5d887e943aa51f2270e517954c024a8c01500.
Diffstat (limited to '.github/workflows/pythonpackage.yml')
-rw-r--r--.github/workflows/pythonpackage.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index bcb47008..881f2ec5 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -44,10 +44,10 @@ jobs:
# and cause subsequent tests to fail
cat test/fixtures/.gitconfig >> ~/.gitconfig
- - name: Lint with Black
+ - name: Lint with flake8
run: |
set -x
- black --check .
+ flake8
- name: Check types with mypy
# With new versions of pypi new issues might arise. This is a problem if there is nobody able to fix them,