From 2c29f454f9af7aa785288a1c4dcd089474c7eacd Mon Sep 17 00:00:00 2001 From: Ibrahim Arshad <38925737+ibrahim1023@users.noreply.github.com> Date: Tue, 5 May 2026 11:12:58 +0400 Subject: [PATCH] test(app): trigger comment gate fix flow --- .github/workflows/app-failure-fixtures.yml | 7 ------- app_failure_typecheck.py | 5 +++++ 2 files changed, 5 insertions(+), 7 deletions(-) create mode 100644 app_failure_typecheck.py diff --git a/.github/workflows/app-failure-fixtures.yml b/.github/workflows/app-failure-fixtures.yml index 023928b..600b084 100644 --- a/.github/workflows/app-failure-fixtures.yml +++ b/.github/workflows/app-failure-fixtures.yml @@ -41,13 +41,6 @@ jobs: - name: Trigger TYPECHECK failure if: ${{ env.SCENARIO == 'typecheck' }} run: | - cat > app_failure_typecheck.py <<'PY' - def needs_int(value: int) -> int: - return value - - result: int = needs_int("7") - print(result) - PY mypy app_failure_typecheck.py - name: Trigger SYNTAX failure diff --git a/app_failure_typecheck.py b/app_failure_typecheck.py new file mode 100644 index 0000000..41431a7 --- /dev/null +++ b/app_failure_typecheck.py @@ -0,0 +1,5 @@ +def needs_int(value: int) -> int: + return value + +result: int = needs_int("7") +print(result)