Skip to content

Commit

Permalink
Rename jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
lloeki committed Jun 28, 2024
1 parent 840343b commit b5162ee
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-appraisal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
name: "Test ${{ matrix.appraisal }} (${{ matrix.engine.name }}:${{ matrix.engine.version }} ${{ matrix.spec }})"
name: "spec:${{ matrix.spec }} ${{ matrix.engine.name }}:${{ matrix.engine.version }} group:${{ matrix.appraisal }} run"
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: "ruby:3.3"
name: Prepare matrix
name: spec:${{ inputs.spec }} ${{ inputs.engine_name}}:${{ inputs.engine_version }} Prepare appraisal matrix
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
test:
name: "${{ matrix.appraisal }} (${{ matrix.engine.name }}:${{ matrix.engine.version }} ${{ matrix.spec }})"
name: "spec:${{ matrix.spec }} ${{ matrix.engine.name }}:${{ matrix.engine.version }} group:${{ matrix.appraisal }}"
needs: matrix
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: "ruby:3.3"
name: Prepare matrix
name: "spec:${{ inputs.spec }} Prepare engine matrix"
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
Expand All @@ -25,7 +25,7 @@ jobs:
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
test:
name: "${{ matrix.engine.name }}:${{ matrix.engine.version }} (${{ matrix.spec }})"
name: "spec:${{ matrix.spec }} ${{ matrix.engine.name }}:${{ matrix.engine.version }}"
needs: matrix
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: "ruby:3.3"
name: Prepare matrix
name: Prepare spec matrix
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
echo "${matrix}" | ruby -rjson -0777 -ne 'puts JSON.pretty_generate JSON.parse($_)'
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
test:
name: "${{ matrix.spec }}"
name: "spec:${{ matrix.spec }}"
needs: matrix
strategy:
fail-fast: false
Expand Down

0 comments on commit b5162ee

Please sign in to comment.