We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67c5fdc commit 7294e9eCopy full SHA for 7294e9e
.github/workflows/style.yaml
@@ -22,11 +22,13 @@ jobs:
22
23
- name: Install dependencies
24
run: |
25
- uv pip install --system ruff
+ uv pip install --system ruff ty
26
27
- name: Run ruff linting
28
- run: ruff check .
+ run: ruff check --config=pyproject.toml .
29
30
- name: Run ruff formatting check
31
- run: ruff format --check .
+ run: ruff format --check --config=pyproject.toml .
32
33
+ - name: Run ty type checking
34
+ run: ty check --exit-zero --output-format=concise
0 commit comments