Skip to content

Commit 6ee1db3

Browse files
committed
fix(ci): replace pyright with mypy in pipelines
1 parent 0b3c8c4 commit 6ee1db3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: uv run ruff check .
4141

4242
- name: Run type checker
43-
run: uv run pyright
43+
run: uv run mypy src
4444

4545
- name: Run tests
4646
run: uv run pytest

.github/workflows/deploy-worker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: uv run ruff check .
4141

4242
- name: Run type checker
43-
run: uv run pyright
43+
run: uv run mypy src
4444

4545
- name: Run tests
4646
run: uv run pytest

0 commit comments

Comments
 (0)