Skip to content

Commit c444081

Browse files
committed
Use unique names for GitHub Actions jobs.
1 parent ecfedaa commit c444081

25 files changed

+25
-25
lines changed

repo_helper/templates/github_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ brace('matrix.config.python-version')}}"
12+
name: "{{ ci_platform }} / Python ${{ brace('matrix.config.python-version')}}"
1313
runs-on: "{{ ci_platform }}"
1414
continue-on-error: ${{ brace('matrix.config.experimental') }}
1515
env:

repo_helper/templates/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
Run:
12-
name: "mypy"
12+
name: "mypy / ${{ brace("matrix.os") }}"
1313
runs-on: ${{ brace("matrix.os") }}
1414

1515
strategy:

tests/test_files/test_ci_cd_/test_github_ci_case_1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "windows-2019 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_github_ci_case_2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "macos-latest / Python ${{ matrix.config.python-version }}"
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_github_ci_windows_38.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "macos-latest / Python ${{ matrix.config.python-version }}"
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_make_github_linux_case_1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_make_github_linux_case_2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_make_github_linux_case_3_False_False_False_False_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_make_github_linux_case_3_False_False_False_True_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

tests/test_files/test_ci_cd_/test_make_github_linux_case_3_False_False_True_False_.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
tests:
12-
name: "Python ${{ matrix.config.python-version }}"
12+
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:

0 commit comments

Comments
 (0)