Skip to content

Commit dbed18f

Browse files
committed
Add black checker to CI
1 parent 12ce88e commit dbed18f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ on:
1010
branches: [ master ]
1111

1212
jobs:
13+
style:
14+
name: Code linting checks
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: psf/black@stable
19+
with:
20+
options: "--check --verbose"
21+
version: "21.1.0"
22+
1323
build:
1424
name: build (${{ matrix.os }}, ${{ matrix.python-version }})
1525
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)