We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5310710 commit 03749daCopy full SHA for 03749da
.github/workflows/package-verification.yml
@@ -27,13 +27,16 @@ jobs:
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
- python -m pip install flake8 flake8-pyproject ruff
+ python -m pip install flake8 flake8-pyproject ruff black
31
- name: Lint with flake8
32
33
flake8 .
34
- name: Lint with ruff
35
36
ruff check .
37
+ - name: Check with black
38
+ run: |
39
+ black --check .
40
41
test:
42
runs-on: ubuntu-latest
0 commit comments