Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/daily.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Daily test
name: Daily tests

on:
workflow_dispatch:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/meta_tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This workflow is for testing typeshed's scripts and tests themselves
name: Meta-tests
name: Infrastructure tests

on:
workflow_dispatch:
Expand Down Expand Up @@ -28,7 +28,7 @@ concurrency:

jobs:
mypy:
name: Check scripts and tests with mypy
name: "mypy: type check"
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -48,7 +48,7 @@ jobs:
--platform=${{ matrix.platform }}

pyright:
name: Check scripts and tests with pyright
name: "pyright: type check"
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -72,7 +72,7 @@ jobs:
project: ./pyrightconfig.scripts_and_tests.json

stubsabot-dry-run:
name: Stubsabot dry run
name: "stubsabot: dry run"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy_primer.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run mypy_primer
name: mypy_primer

on:
# Only run on PR, since we diff against main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy_primer_comment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Comment with mypy_primer diff
name: mypy_primer (comment)

on:
workflow_run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stubsabot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run stubsabot daily
name: Stubsabot

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stubtest_stdlib.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Stdlib stubtest
name: "Stubtest: stdlib"

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stubtest_third_party.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Third-party stubtest
name: "Stubtest: third-party"

on:
pull_request:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: Type check, regression tests

on:
workflow_dispatch:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
./tests/check_typeshed_structure.py

mypy:
name: "mypy: Check stubs"
name: "mypy: type check"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: python ./tests/mypy_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }}

regression-tests:
name: "mypy: Run test cases"
name: "mypy: regression tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
Expand All @@ -83,7 +83,7 @@ jobs:
--verbosity=QUIET

ty:
name: "ty: Check stubs"
name: "ty: type check"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
run: python tests/ty_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }} --python=.venv

pyrefly:
name: "pyrefly: Check stubs"
name: "pyrefly: type check"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
run: python tests/pyrefly_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }} --python=.venv/bin/python

pyright:
name: "pyright: Run test cases"
name: "pyright: regression tests"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
project: ./pyrightconfig.testcases.json

stub-uploader:
name: stub_uploader tests
name: "stub uploader: tests"
runs-on: ubuntu-latest
steps:
- name: Checkout typeshed
Expand Down
Loading