aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang E. Sanyer <WolfgangESanyer@gmail.com>2021-09-20 09:58:39 -0400
committerMatt Turner <mattst88@gentoo.org>2021-09-20 15:54:02 -0700
commit2631b06acb989b291d8beafe4244c6eed8c2aef6 (patch)
tree50416ea83968a071a8c3d9044405409b339194d2
parentRename README.dev to CONTRIBUTING.md. Also, add information... (diff)
downloadgentoolkit-2631b06a.tar.gz
gentoolkit-2631b06a.tar.bz2
gentoolkit-2631b06a.zip
Add github action to check formatting
Closes: https://github.com/gentoo/gentoolkit/pull/15 Signed-off-by: Wolfgang E. Sanyer <WolfgangESanyer@gmail.com> Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r--.github/workflows/black.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml
new file mode 100644
index 0000000..b04fb15
--- /dev/null
+++ b/.github/workflows/black.yml
@@ -0,0 +1,10 @@
+name: Lint
+
+on: [push, pull_request]
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: psf/black@stable