Skip to content

Commit 32c483a

Browse files
authored
Merge pull request #28 from per1234/ci
Add "smoke test" sketch compilation CI workflow
2 parents 5f17cac + 680d190 commit 32c483a

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Compile Sketches
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
compile-sketches:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
15+
# See: https://github.com/arduino/compile-sketches#readme
16+
- name: Compile sketches
17+
uses: arduino/compile-sketches@v1
18+
with:
19+
fqbn: arduino:mbed:nano33ble
20+
sketch-paths: |
21+
- FruitToEmoji/sketches/object_color_capture
22+
- GestureToEmoji/ArduinoSketches/HardwareTest
23+
- GestureToEmoji/ArduinoSketches/IMU_Capture
24+
- GestureToEmoji/ArduinoSketches/IMU_Classifier
25+
libraries: |
26+
- name: Arduino_TensorFlowLite
27+
- name: Arduino_APDS9960
28+
- name: Arduino_LSM9DS1

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Machine Learning on Arduino
22
## Arduino TensorFlow Lite Tutorials
33

4+
[![Compile Sketches status](https://github.com/arduino/ArduinoTensorFlowLiteTutorials/actions/workflows/compile-sketches.yml/badge.svg)](https://github.com/arduino/ArduinoTensorFlowLiteTutorials/actions/workflows/compile-sketches.yml)
5+
46
This Github repo contains tutorials for using TensorFlow Lite on Arduino hardware.
57

68
* [GestureToEmoji](GestureToEmoji/)

0 commit comments

Comments
 (0)