diff options
Diffstat (limited to '.github/workflows/black.yml')
-rw-r--r-- | .github/workflows/black.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml new file mode 100644 index 0000000..fb422c8 --- /dev/null +++ b/.github/workflows/black.yml @@ -0,0 +1,14 @@ +name: Black Autoformatting + +on: + push: + pull_request: + +jobs: + format: + name: Black Autoformatting + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Black Check + uses: jpetrucciani/black-check@19.10b0 |