Skip to content

Commit 65efbf6

Browse files
authored
Merge pull request #120 from cisagov/improvement/update_names_for_jobs_using_matrix_strategy
Improve job names for the `build` workflow in GitHub Actions
2 parents 9be0934 + 0f3dd39 commit 65efbf6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
uses: mxschmitt/action-tmate@v3
104104
if: env.RUN_TMATE
105105
test:
106+
name: test source - py${{ matrix.python-version }}
106107
runs-on: ${{ matrix.os }}
107108
strategy:
108109
fail-fast: false
@@ -195,10 +196,11 @@ jobs:
195196
uses: mxschmitt/action-tmate@v3
196197
if: env.RUN_TMATE
197198
build:
198-
runs-on: ${{ matrix.os }}
199+
name: build wheel - py${{ matrix.python-version }}
199200
needs:
200201
- lint
201202
- test
203+
runs-on: ${{ matrix.os }}
202204
strategy:
203205
fail-fast: false
204206
matrix:
@@ -248,9 +250,10 @@ jobs:
248250
uses: mxschmitt/action-tmate@v3
249251
if: env.RUN_TMATE
250252
test-build:
251-
runs-on: ${{ matrix.os }}
253+
name: test built wheel - py${{ matrix.python-version }}
252254
needs:
253255
- build
256+
runs-on: ${{ matrix.os }}
254257
strategy:
255258
fail-fast: false
256259
matrix:

0 commit comments

Comments
 (0)