From 1d071234fc2d933ba12cdd157ed73bde4ae329b8 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Tue, 3 Jun 2025 10:04:51 +0100 Subject: [PATCH 1/2] Check if MyPy issue happens with a newer Airflow --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 93d4bebdbf..d1fc7e0864 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: test on: push: # Run on pushes to the default branch - branches: [main] + branches: [main, mypy-fix] pull_request_target: # Also run on pull requests originated from forks branches: [main] @@ -28,11 +28,11 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: "3.9" + python-version: "3.10" architecture: "x64" - run: pip3 install hatch - - run: hatch run tests.py3.9-2.8-1.9:type-check + - run: hatch run tests.py3.10-2.10-1.9:type-check Run-Unit-Tests: runs-on: ubuntu-latest From 46ded8892281c1069d0575b951cea2d2f1b3b453 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Tue, 3 Jun 2025 12:22:25 +0100 Subject: [PATCH 2/2] Update .github/workflows/test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d1fc7e0864..97ceba61c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: test on: push: # Run on pushes to the default branch - branches: [main, mypy-fix] + branches: [main] pull_request_target: # Also run on pull requests originated from forks branches: [main]