diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-12-02 02:16:53 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-02 16:00:18 -0500 |
commit | 94f058bc907a663a7254ba3d2cf05ae31794ae63 (patch) | |
tree | 2488bd098976b9052591f6db27c80b4592047947 /.github/workflows | |
parent | 7b3a55cf50b4a4e7260bb1898d07c44d9416d97d (diff) |
ci(build): replace board matrix array with list
A multi-line list can be more merge friendly than a single-line array.
PR: #457
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 433e279..8f2d63e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - board: [proton_c, nice_nano, bluemicro840_v1, nrfmicro_13] + board: + - proton_c + - nice_nano + - bluemicro840_v1 + - nrfmicro_13 shield: - boardsource3x4 - corne_left |