Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #120 from cisagov/improvement/update_names_for_job…
Browse files Browse the repository at this point in the history
…s_using_matrix_strategy

Improve job names for the `build` workflow in GitHub Actions
  • Loading branch information
jmorrowomni committed Feb 8, 2023
2 parents 9be0934 + 0f3dd39 commit 65efbf6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ jobs:
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
test:
name: test source - py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -195,10 +196,11 @@ jobs:
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
build:
runs-on: ${{ matrix.os }}
name: build wheel - py${{ matrix.python-version }}
needs:
- lint
- test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -248,9 +250,10 @@ jobs:
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
test-build:
runs-on: ${{ matrix.os }}
name: test built wheel - py${{ matrix.python-version }}
needs:
- build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 65efbf6

Please sign in to comment.