Skip to content

Commit 90754ab

Browse files
update
1 parent 8f4c31b commit 90754ab

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/beam_PostCommit_Python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
strategy:
6060
fail-fast: false
6161
matrix:
62-
job_name: [beam_PostCommit_Python]
63-
job_phrase: [Run Python PostCommit]
62+
job_name: ['beam_PostCommit_Python']
63+
job_phrase: ['Run Python PostCommit']
6464
python_version: ['3.9', '3.10', '3.11', '3.12']
6565
# Run on both self-hosted and GitHub-hosted runners.
6666
# Some tests (marked require_docker_in_docker) can't run on Beam's
@@ -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 (${{ join(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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,13 @@ env:
5757

5858
jobs:
5959
beam_PreCommit_Python_ML:
60-
name: 'beam_PreCommit_Python_ML'
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:
6464
fail-fast: false
6565
matrix:
66+
job_name: ['beam_PreCommit_Python_ML']
6667
job_phrase: ['Run Python_ML PreCommit']
6768
python_version: ['3.9','3.10','3.11','3.12']
6869
# Run on both self-hosted and GitHub-hosted runners.
@@ -84,7 +85,7 @@ jobs:
8485
with:
8586
comment_phrase: ${{ matrix.job_phrase }} ${{ matrix.python_version }}
8687
github_token: ${{ secrets.GITHUB_TOKEN }}
87-
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, ', ') }})
8889
- name: Setup environment
8990
uses: ./.github/actions/setup-environment-action
9091
with:
@@ -121,4 +122,4 @@ jobs:
121122
comment_mode: ${{ github.event_name == 'issue_comment' && 'always' || 'off' }}
122123
files: '**/pytest*.xml'
123124
large_files: true
124-
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)