-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 840 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "Build"
on:
- push
jobs:
compile-sketch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: arduino/compile-sketches@v1.1.0
with:
fqbn: "adafruit:samd:adafruit_pyportal_m4_titano"
platforms: |
- name: "adafruit:samd"
source-url: "https://adafruit.github.io/arduino-board-index/package_adafruit_index.json"
sketch-paths: |
- ./HotWaterController.ino
libraries: |
- name: "Adafruit BusIO"
- name: "Adafruit GFX Library"
- name: "Adafruit HX8357 Library"
- name: "Adafruit PCF8591"
- name: "DallasTemperature"
- name: "FreeRTOS_SAMD51"
- name: "MQTT"
- name: "OneWire"
- name: "WiFiNINA"