diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-05-18 07:55:40 +0800 |
|---|---|---|
| committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-05-18 07:55:40 +0800 |
| commit | d8bcb80f765052a072a76a22cb6f885158922984 (patch) | |
| tree | 50448375267b27e8290ac208e813292ff1a43480 /.github/workflows | |
| parent | b4b238057e7913c93245b484bdd50131dafd71f3 (diff) | |
| download | gitpython-d8bcb80f765052a072a76a22cb6f885158922984.tar.gz | |
improve compatibility of flake8 with black
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pythonpackage.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 881f2ec5..1a10a4b2 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -44,6 +44,11 @@ jobs: # and cause subsequent tests to fail cat test/fixtures/.gitconfig >> ~/.gitconfig + - name: Lint with black + run: | + set -x + black --check . + - name: Lint with flake8 run: | set -x |
