Testing out a Black github action

This commit is contained in:
Mouse Reeve 2021-03-06 13:43:20 -08:00
parent e4fa85c2fb
commit 9536f0058a
1 changed files with 13 additions and 0 deletions

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:
args: ". --check -l 80 -S"