From d6f29bbdbbd7229a78db36c577d1d96c082d8060 Mon Sep 17 00:00:00 2001 From: Asuka Minato Date: Fri, 18 Jul 2025 01:14:45 +0900 Subject: [PATCH] add tyck tool (currently ignore the error) --- .github/workflows/api-tests.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/api-tests.yml b/.github/workflows/api-tests.yml index a5a5071fae..b9a9b9c20e 100644 --- a/.github/workflows/api-tests.yml +++ b/.github/workflows/api-tests.yml @@ -47,7 +47,15 @@ jobs: - name: Run Unit tests run: | uv run --project api bash dev/pytest/pytest_unit_tests.sh - + - name: Run ty check + run: | + cd api + uvx ty check || true + - name: Run pyrefly check + run: | + cd api + uvx pyrefly init || true + uvx pyrefly check || true - name: Coverage Summary run: | set -x