Skip to content

Commit cf2d3bf

Browse files
ci(github): update matrix.yml
1 parent 66a5135 commit cf2d3bf

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/matrix.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,14 @@ jobs:
2626
digit: 2
2727
steps:
2828
- run: echo ${{ matrix.collection.name }}, ${{ matrix.collection.digit }}
29+
30+
array:
31+
runs-on: ubuntu-latest
32+
strategy:
33+
matrix:
34+
array: [
35+
{ name: 'one', digit: 1 },
36+
{ name: 'two', digit: 2 },
37+
]
38+
steps:
39+
- run: echo ${{ matrix.array.name }}, ${{ matrix.array.digit }}

0 commit comments

Comments
 (0)