Skip to content

Commit 689ee77

Browse files
committed
Rename jobs
1 parent 26bdc9b commit 689ee77

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/unit-test-appraisal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
test:
2121
runs-on: ubuntu-latest
22-
name: "Test ${{ matrix.appraisal }} (${{ matrix.engine.name }}:${{ matrix.engine.version }} ${{ matrix.spec }})"
22+
name: "spec:${{ matrix.spec }} ${{ matrix.engine.name }}:${{ matrix.engine.version }} group:${{ matrix.appraisal }} run"
2323
strategy:
2424
fail-fast: false
2525
matrix:

.github/workflows/unit-test-engine.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
container:
2020
image: "ruby:3.3"
21-
name: Prepare matrix
21+
name: "spec:${{ inputs.spec }} ${{ inputs.engine_name}}:${{ inputs.engine_version }} appraisal:matrix"
2222
outputs:
2323
matrix: ${{ steps.matrix.outputs.matrix }}
2424
steps:
@@ -31,7 +31,7 @@ jobs:
3131
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
3232
3333
test:
34-
name: "${{ matrix.appraisal }} (${{ matrix.engine.name }}:${{ matrix.engine.version }} ${{ matrix.spec }})"
34+
name: "spec:${{ matrix.spec }} ${{ matrix.engine.name }}:${{ matrix.engine.version }} group:${{ matrix.appraisal }}"
3535
needs: matrix
3636
strategy:
3737
fail-fast: false

.github/workflows/unit-test-spec.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
container:
1414
image: "ruby:3.3"
15-
name: Prepare matrix
15+
name: "spec:${{ inputs.spec }} engine:matrix"
1616
outputs:
1717
matrix: ${{ steps.matrix.outputs.matrix }}
1818
steps:
@@ -25,7 +25,7 @@ jobs:
2525
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
2626
2727
test:
28-
name: "${{ matrix.engine.name }}:${{ matrix.engine.version }} (${{ matrix.spec }})"
28+
name: "spec:${{ matrix.spec }} ${{ matrix.engine.name }}:${{ matrix.engine.version }}"
2929
needs: matrix
3030
strategy:
3131
fail-fast: false

.github/workflows/unit-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
container:
1010
image: "ruby:3.3"
11-
name: Prepare matrix
11+
name: "spec:matrix"
1212
outputs:
1313
matrix: ${{ steps.matrix.outputs.matrix }}
1414
steps:
@@ -20,7 +20,7 @@ jobs:
2020
echo "${matrix}" | ruby -rjson -0777 -ne 'puts JSON.pretty_generate JSON.parse($_)'
2121
echo "matrix=${matrix}" >> $GITHUB_OUTPUT
2222
test:
23-
name: "${{ matrix.spec }}"
23+
name: "spec:${{ matrix.spec }}"
2424
needs: matrix
2525
strategy:
2626
fail-fast: false

0 commit comments

Comments
 (0)