Skip to content

Commit 50e6c06

Browse files
committed
Give workflow jobs names
1 parent 3adee3b commit 50e6c06

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ on:
1212

1313
jobs:
1414
lint:
15+
name: Lint
1516
runs-on: ubuntu-latest
1617
steps:
1718
- uses: actions/checkout@v4
1819
- run: yamllint .
1920

2021
test-defaults:
22+
name: Defaults
2123
runs-on: ${{ matrix.os }}
2224
steps:
2325
# \todo Remove this step when https://github.com/actions/partner-runner-images/issues/25 is resolved.
@@ -39,6 +41,7 @@ jobs:
3941
fail-fast: false
4042

4143
test-options:
44+
name: Options
4245
runs-on: ${{ matrix.os }}
4346
steps:
4447
# \todo Remove this step when https://github.com/actions/partner-runner-images/issues/25 is resolved.
@@ -87,6 +90,7 @@ jobs:
8790
fail-fast: false
8891

8992
test-plugins:
93+
name: Plugins
9094
runs-on: ${{ matrix.os }}
9195
env:
9296
PLUGINS: >-
@@ -141,7 +145,8 @@ jobs:
141145
- ubuntu-24.04-arm
142146
fail-fast: false
143147

144-
test-plugins-latest:
148+
test-architectures:
149+
name: Architectures
145150
runs-on: ${{ matrix.os }}${{ matrix.arch == 'aarch64' && '-arm' || '' }}
146151
env:
147152
# These should all be the latest official releases, however most (all?) plugins don't have official releases yet.

0 commit comments

Comments
 (0)