summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorCarlton Gibson <carlton.gibson@noumenal.es>2022-02-03 15:49:14 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:36:04 +0100
commitcf5e61cf6c721121abf7347baff3d41a0ad3c23e (patch)
tree137281817a95a9e96f7cff5cb2d19cab5a34c964 /.github
parentba94488196a74e312177ef2621fbd427956836ef (diff)
downloaddjango-cf5e61cf6c721121abf7347baff3d41a0ad3c23e.tar.gz
Refs #33476 -- Added GitHub action to run black linter.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linters.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml
index fdf0b33222..3969b34cc5 100644
--- a/.github/workflows/linters.yml
+++ b/.github/workflows/linters.yml
@@ -43,3 +43,11 @@ jobs:
with:
linters: isort
run: isort --check --diff django tests scripts
+
+ black:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: black
+ uses: psf/black@stable