We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b8a85a commit 377824cCopy full SHA for 377824c
.github/workflows/ci.yml
@@ -6,6 +6,20 @@ on:
6
pull_request:
7
8
jobs:
9
+ fmt:
10
+ runs-on: "ubuntu-latest"
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+
14
+ - name: Set up Python ${{ matrix.python-version }}
15
+ uses: actions/setup-python@v2
16
+ with:
17
+ python-version: "3.x"
18
19
+ - run: pip install black
20
21
+ - run: black --check .
22
23
build:
24
name: ${{ matrix.python-version }} ${{ matrix.platform.os }}-${{ matrix.platform.python-architecture }}
25
runs-on: ${{ matrix.platform.os }}
pyproject.toml
@@ -4,3 +4,6 @@ build-backend = "setuptools.build_meta"
4
5
[tool.setuptools_scm]
write_to = "setuptools_rust/version.py"
+[tool.isort]
+profile = "black"
0 commit comments