Skip to content

Commit 2553d8d

Browse files
committed
add test prereq and push branches
1 parent 85e45bb commit 2553d8d

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11
name: Build CI
22

3-
on: [push, pull_request, release]
4-
5-
push:
6-
branches:
7-
- master
8-
- github-ci
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- github-ci
8+
pull_request:
9+
release:
910

1011
jobs:
11-
build:
12+
test:
13+
runs-on: ubuntu-16.04
14+
steps:
15+
- name: Set up Python 3.5
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: 3.5
1219

20+
build:
1321
runs-on: ubuntu-16.04
22+
needs: test
1423
strategy:
1524
matrix:
1625
board: ["metro_m0_express", "metro_m4_express"]

0 commit comments

Comments
 (0)