Skip to content

Commit c380ecc

Browse files
authored
[CI] Make workflow/step names more consistent (#16177)
1 parent 42e48d4 commit c380ecc

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Daily test
1+
name: Daily tests
22

33
on:
44
workflow_dispatch:

.github/workflows/meta_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This workflow is for testing typeshed's scripts and tests themselves
2-
name: Meta-tests
2+
name: Infrastructure tests
33

44
on:
55
workflow_dispatch:
@@ -28,7 +28,7 @@ concurrency:
2828

2929
jobs:
3030
mypy:
31-
name: Check scripts and tests with mypy
31+
name: "mypy: type check"
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
@@ -48,7 +48,7 @@ jobs:
4848
--platform=${{ matrix.platform }}
4949
5050
pyright:
51-
name: Check scripts and tests with pyright
51+
name: "pyright: type check"
5252
runs-on: ubuntu-latest
5353
strategy:
5454
matrix:
@@ -72,7 +72,7 @@ jobs:
7272
project: ./pyrightconfig.scripts_and_tests.json
7373

7474
stubsabot-dry-run:
75-
name: Stubsabot dry run
75+
name: "stubsabot: dry run"
7676
runs-on: ubuntu-latest
7777
steps:
7878
- uses: actions/checkout@v7

.github/workflows/mypy_primer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run mypy_primer
1+
name: mypy_primer
22

33
on:
44
# Only run on PR, since we diff against main

.github/workflows/mypy_primer_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Comment with mypy_primer diff
1+
name: mypy_primer (comment)
22

33
on:
44
workflow_run:

.github/workflows/stubsabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run stubsabot daily
1+
name: Stubsabot
22

33
on:
44
workflow_dispatch:

.github/workflows/stubtest_stdlib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Stdlib stubtest
1+
name: "Stubtest: stdlib"
22

33
on:
44
workflow_dispatch:

.github/workflows/stubtest_third_party.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Third-party stubtest
1+
name: "Stubtest: third-party"
22

33
on:
44
pull_request:

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test
1+
name: Type check, regression tests
22

33
on:
44
workflow_dispatch:
@@ -38,7 +38,7 @@ jobs:
3838
./tests/check_typeshed_structure.py
3939
4040
mypy:
41-
name: "mypy: Check stubs"
41+
name: "mypy: type check"
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
@@ -66,7 +66,7 @@ jobs:
6666
run: python ./tests/mypy_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }}
6767

6868
regression-tests:
69-
name: "mypy: Run test cases"
69+
name: "mypy: regression tests"
7070
runs-on: ubuntu-latest
7171
steps:
7272
- uses: actions/checkout@v7
@@ -83,7 +83,7 @@ jobs:
8383
--verbosity=QUIET
8484
8585
ty:
86-
name: "ty: Check stubs"
86+
name: "ty: type check"
8787
runs-on: ubuntu-latest
8888
strategy:
8989
matrix:
@@ -116,7 +116,7 @@ jobs:
116116
run: python tests/ty_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }} --python=.venv
117117

118118
pyrefly:
119-
name: "pyrefly: Check stubs"
119+
name: "pyrefly: type check"
120120
runs-on: ubuntu-latest
121121
strategy:
122122
matrix:
@@ -149,7 +149,7 @@ jobs:
149149
run: python tests/pyrefly_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }} --python=.venv/bin/python
150150

151151
pyright:
152-
name: "pyright: Run test cases"
152+
name: "pyright: regression tests"
153153
runs-on: ubuntu-latest
154154
strategy:
155155
matrix:
@@ -214,7 +214,7 @@ jobs:
214214
project: ./pyrightconfig.testcases.json
215215

216216
stub-uploader:
217-
name: stub_uploader tests
217+
name: "stub uploader: tests"
218218
runs-on: ubuntu-latest
219219
steps:
220220
- name: Checkout typeshed

0 commit comments

Comments
 (0)