Add black workflow.

This commit is contained in:
Dan Albert 2021-02-12 20:13:47 -08:00
parent 9c1265d50d
commit 16b0dcad71

13
.github/workflows/black.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
with:
black_args: ". --check"