We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 098d453 commit b43da35Copy full SHA for b43da35
.github/workflows/ci.yml
@@ -28,6 +28,10 @@ jobs:
28
run: |
29
rye sync --all-features
30
31
+ - name: Run ruff
32
+ run: |
33
+ rye run check:ruff
34
+
35
- name: Run type checking
36
37
rye run typecheck
pyproject.toml
@@ -54,6 +54,8 @@ format = { chain = [
54
"format:ruff" = "ruff --fix ."
55
"format:isort" = "isort ."
56
57
+"check:ruff" = "ruff ."
58
59
typecheck = { chain = [
60
"typecheck:pyright",
61
"typecheck:verify-types",
0 commit comments