ci(build): replace board matrix array with list
A multi-line list can be more merge friendly than a single-line array. PR: #457
This commit is contained in:
parent
7b3a55cf50
commit
94f058bc90
1 changed files with 5 additions and 1 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -15,7 +15,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
board: [proton_c, nice_nano, bluemicro840_v1, nrfmicro_13]
|
board:
|
||||||
|
- proton_c
|
||||||
|
- nice_nano
|
||||||
|
- bluemicro840_v1
|
||||||
|
- nrfmicro_13
|
||||||
shield:
|
shield:
|
||||||
- boardsource3x4
|
- boardsource3x4
|
||||||
- corne_left
|
- corne_left
|
||||||
|
|
Loading…
Reference in a new issue