Skip to content

Commit 33275f1

Browse files
authored
ci: add formatting check
1 parent 247f8c1 commit 33275f1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/black.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Black
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-python@v2
11+
- uses: psf/black@stable
12+
with:
13+
options: "--check --verbose"
14+
src: "./src"

0 commit comments

Comments
 (0)