Skip to content

Commit 9d48243

Browse files
improve job and step names
1 parent c85076a commit 9d48243

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/_check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: workflow_call
44

55
jobs:
66
code-check:
7+
name: ${{ matrix.target.name }}
78
strategy:
89
matrix:
910
target:

.github/workflows/_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
set -x
3535
poetry install --all-extras --with dev
3636
- uses: nanasess/setup-chromedriver@v2.3.0
37-
- name: Run pytest
37+
- name: ${{ matrix.python }} / ${{ matrix.scope }}
3838
if: matrix.scope == 'pytest'
3939
run: poetry run pytest
4040
- uses: actions/upload-artifact@v5
@@ -43,7 +43,7 @@ jobs:
4343
name: screenshots-${{ matrix.python }}
4444
path: screenshots/*.failed.png
4545
retention-days: 14
46-
- name: Run startup tests
46+
- name: ${{ matrix.python }} / ${{ matrix.scope }}
4747
if: matrix.scope == 'startup'
4848
run: poetry run ./test_startup.sh
4949
- name: Restore dependencies for effective caching

0 commit comments

Comments
 (0)