From 595a03c30fbdcc24b87d7dd868080bd34d65076d Mon Sep 17 00:00:00 2001 From: donbarbos Date: Thu, 27 Aug 2026 11:00:17 +0400 Subject: [PATCH] [CI] Add name to steps with multiline command --- .github/workflows/meta_tests.yml | 6 ++++-- .github/workflows/stubsabot.yml | 2 +- .github/workflows/tests.yml | 6 ++++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/meta_tests.yml b/.github/workflows/meta_tests.yml index 56892de7dcd8..2c1dbc8f9a13 100644 --- a/.github/workflows/meta_tests.yml +++ b/.github/workflows/meta_tests.yml @@ -39,7 +39,8 @@ jobs: - uses: astral-sh/setup-uv@v8.2.0 with: version-file: "requirements-tests.txt" - - run: | + - name: Run check_typeshed_structure.py + run: | uv run \ --python=3.13 \ --no-project \ @@ -83,7 +84,8 @@ jobs: run: | git config --global user.name stubsabot git config --global user.email '<>' - - run: | + - name: Run stubsabot + run: | uv run \ --python=3.13 \ --no-project \ diff --git a/.github/workflows/stubsabot.yml b/.github/workflows/stubsabot.yml index b4fced712206..527fd8899310 100644 --- a/.github/workflows/stubsabot.yml +++ b/.github/workflows/stubsabot.yml @@ -27,7 +27,7 @@ jobs: - uses: astral-sh/setup-uv@v8.2.0 with: version-file: "requirements-tests.txt" - - name: git config + - name: Git config run: | git config --global user.name stubsabot git config --global user.email '<>' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fb8fe504c110..ba4ce98734ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,8 @@ jobs: - uses: astral-sh/setup-uv@v8.2.0 with: version-file: "requirements-tests.txt" - - run: | + - name: Run check_typeshed_structure.py + run: | uv run \ --python=3.13 \ --no-project \ @@ -73,7 +74,8 @@ jobs: - uses: astral-sh/setup-uv@v8.2.0 with: version-file: "requirements-tests.txt" - - run: | + - name: Run regr_test.py + run: | uv run \ --python=3.14 \ --no-project \