Skip to content

Commit 95f1d4d

Browse files
committed
feat: type check with ty in ci
1 parent fc631e5 commit 95f1d4d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,14 @@ jobs:
2424
- name: Install the project and dependencies
2525
run: uv sync --all-extras
2626

27-
- uses: astral-sh/ruff-action@v3
27+
- name: Lint
28+
uses: astral-sh/ruff-action@v3
29+
30+
- name: Type checkg
31+
run: |
32+
uv tool install ty
33+
ty check src
34+
ty check tests
2835
2936
- name: Run tests with coverage
3037
run: uv run coverage run -m pytest

0 commit comments

Comments
 (0)