From 2141e110fb9201232cd8aa96524e21e3f870261e Mon Sep 17 00:00:00 2001 From: Philipp Emanuel Weidmann Date: Mon, 22 Dec 2025 10:57:36 +0530 Subject: [PATCH] ci: treat ty warnings as errors --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1dbddb..501c7f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: run: uv run ruff check --output-format=github --extend-select I . - name: Check typing - run: uv run ty check --output-format=github . + run: uv run ty check --output-format=github --error-on-warning . - name: Build package run: uv build