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 3821382 commit f769f89Copy full SHA for f769f89
.github/workflows/main.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ container: mbedos/mbed-os-env:stable
12
13
+ steps:
14
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15
+ - uses: actions/checkout@v2
16
17
+ # Install dependencies for all projects
18
+ - name: Install dependencies
19
+ run: find . -maxdepth 2 -name 'mbed_app.json' -exec sh -c "cd $(dirname '{}') && mbed update" \;
20
21
+ # Compile all projects
22
+ - name: Compile
23
0 commit comments