We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e45bb commit 2553d8dCopy full SHA for 2553d8d
.github/workflows/build.yml
@@ -1,16 +1,25 @@
1
name: Build CI
2
3
-on: [push, pull_request, release]
4
-
5
-push:
6
- branches:
7
- - master
8
- - github-ci
+on:
+ push:
+ branches:
+ - master
+ - github-ci
+ pull_request:
9
+ release:
10
11
jobs:
- 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
19
20
+ build:
21
runs-on: ubuntu-16.04
22
+ needs: test
23
strategy:
24
matrix:
25
board: ["metro_m0_express", "metro_m4_express"]
0 commit comments