Skip to content

Commit c466a48

Browse files
update
1 parent d5af7c7 commit c466a48

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/beam_PostCommit_Python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ env:
5353

5454
jobs:
5555
beam_PostCommit_Python:
56-
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }}) ${{ join(matrix.os, ', ') }}
56+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }}) (${{ join(matrix.os, ', ') }})
5757
runs-on: ${{ matrix.os }}
5858
timeout-minutes: 240
5959
strategy:
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
comment_phrase: ${{ matrix.job_phrase }} ${{ matrix.python_version }}
8282
github_token: ${{ secrets.GITHUB_TOKEN }}
83-
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
83+
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }}) (${{ join(matrix.os, ', ') }})
8484
- name: Setup environment
8585
uses: ./.github/actions/setup-environment-action
8686
with:
@@ -117,7 +117,7 @@ jobs:
117117
uses: actions/upload-artifact@v4
118118
if: failure()
119119
with:
120-
name: Python ${{ matrix.python_version }} Test Results ${{ matrix.os }}
120+
name: Python ${{ matrix.python_version }} Test Results (${{ join(matrix.os, ', ') }})
121121
path: '**/pytest*.xml'
122122
- name: Publish Python Test Results
123123
uses: EnricoMi/publish-unit-test-result-action@v2
@@ -127,4 +127,4 @@ jobs:
127127
comment_mode: ${{ github.event_name == 'issue_comment' && 'always' || 'off' }}
128128
files: '**/pytest*.xml'
129129
large_files: true
130-
check_name: 'Python ${{ matrix.python_version }} Test Results ${{ matrix.os }}'
130+
check_name: 'Python ${{ matrix.python_version }} Test Results (${{ join(matrix.os, ", ") }})'

.github/workflows/beam_PreCommit_Python_ML.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ env:
5757

5858
jobs:
5959
beam_PreCommit_Python_ML:
60-
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }}) ${{ matrix.os }}
60+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }}) (${{ join(matrix.os, ', ') }})
6161
runs-on: ${{ matrix.os }}
6262
timeout-minutes: 180
6363
strategy:
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
comment_phrase: ${{ matrix.job_phrase }} ${{ matrix.python_version }}
8787
github_token: ${{ secrets.GITHUB_TOKEN }}
88-
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
88+
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }}) (${{ join(matrix.os, ', ') }})
8989
- name: Setup environment
9090
uses: ./.github/actions/setup-environment-action
9191
with:
@@ -112,7 +112,7 @@ jobs:
112112
uses: actions/upload-artifact@v4
113113
if: failure()
114114
with:
115-
name: Python ${{ matrix.python_version }} Test Results ${{ matrix.os }}
115+
name: Python ${{ matrix.python_version }} Test Results (${{ join(matrix.os, ', ') }})
116116
path: '**/pytest*.xml'
117117
- name: Publish Python Test Results
118118
uses: EnricoMi/publish-unit-test-result-action@v2
@@ -122,4 +122,4 @@ jobs:
122122
comment_mode: ${{ github.event_name == 'issue_comment' && 'always' || 'off' }}
123123
files: '**/pytest*.xml'
124124
large_files: true
125-
check_name: 'Python ${{ matrix.python_version }} Test Results ${{ matrix.os }}'
125+
check_name: 'Python ${{ matrix.python_version }} Test Results ${{ join(matrix.os, ", ") }})'

0 commit comments

Comments
 (0)