Skip to content

Commit 7294e9e

Browse files
committed
update workflow style to be ty
1 parent 67c5fdc commit 7294e9e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/style.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ jobs:
2222

2323
- name: Install dependencies
2424
run: |
25-
uv pip install --system ruff
25+
uv pip install --system ruff ty
2626
2727
- name: Run ruff linting
28-
run: ruff check .
28+
run: ruff check --config=pyproject.toml .
2929

3030
- name: Run ruff formatting check
31-
run: ruff format --check .
31+
run: ruff format --check --config=pyproject.toml .
3232

33+
- name: Run ty type checking
34+
run: ty check --exit-zero --output-format=concise

0 commit comments

Comments
 (0)