We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4101ba commit 522529eCopy full SHA for 522529e
.github/workflows/ci.yml
@@ -28,8 +28,13 @@ jobs:
28
clang-format-version: 15
29
check-path: bindings/c
30
31
- - name: black --check
32
- uses: psf/black@stable
+ - name: ruff format
+ uses: chartboost/ruff-action@v1
33
+ with:
34
+ args: format --check
35
+
36
+ - name: ruff check
37
38
39
test:
40
runs-on: ${{ matrix.os }}
pyproject.toml
@@ -18,8 +18,8 @@ macos-deployment-target = "10.12"
18
[tool.maturin.target."aarch64-apple-darwin"]
19
macos-deployment-target = "11.0"
20
21
-[tool.black]
22
-include = 'bindings/python/.*\.py'
+[tool.ruff]
+include = ['bindings/python/*.py']
23
24
[project]
25
name = "accesskit"
0 commit comments