From cf5e61cf6c721121abf7347baff3d41a0ad3c23e Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Thu, 3 Feb 2022 15:49:14 +0100 Subject: [PATCH] Refs #33476 -- Added GitHub action to run black linter. --- .github/workflows/linters.yml | 8 ++++++++ 1 file changed, 8 insertions(+) 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