Skip to content

Commit 03749da

Browse files
[CI] Check code style with black
1 parent 5310710 commit 03749da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/package-verification.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
python -m pip install flake8 flake8-pyproject ruff
30+
python -m pip install flake8 flake8-pyproject ruff black
3131
- name: Lint with flake8
3232
run: |
3333
flake8 .
3434
- name: Lint with ruff
3535
run: |
3636
ruff check .
37+
- name: Check with black
38+
run: |
39+
black --check .
3740
3841
test:
3942
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)