Skip to content

Commit b2c135b

Browse files
committed
workflows: test build all supported boards on push and merge
We were previously testing for only the aludel_mini but building for all boards on every PR will help catch digressions sooner. Signed-off-by: Mike Szczys <[email protected]>
1 parent 758e752 commit b2c135b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,22 @@ on:
77
pull_request:
88

99
push:
10+
branches: [ main ]
1011

1112
jobs:
12-
test_build:
13+
test_build_nrf9160dk:
14+
uses: ./.github/workflows/build_zephyr.yml
15+
with:
16+
ZEPHYR_SDK: 0.16.3
17+
BOARD: nrf9160dk/nrf9160/ns
18+
ARTIFACT: false
19+
test_build_aludel_elixir:
20+
uses: ./.github/workflows/build_zephyr.yml
21+
with:
22+
ZEPHYR_SDK: 0.16.3
23+
BOARD: aludel_elixir/nrf9160/ns
24+
ARTIFACT: false
25+
test_build_aludel_mini:
1326
uses: ./.github/workflows/build_zephyr.yml
1427
with:
1528
ZEPHYR_SDK: 0.16.3

0 commit comments

Comments
 (0)