Skip to content

Commit 4537210

Browse files
committed
add format checker
1 parent 408985e commit 4537210

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/format.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint
2+
3+
on: [push, pull_request, workflow_call]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: psf/black@stable
11+
with:
12+
options: "--check --verbose"
13+
src: "./src"
14+
jupyter: true
15+
version: "24.4.2"

0 commit comments

Comments
 (0)