-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First attempt at a simple compile-on-push workflow
- Loading branch information
1 parent
32c5c9d
commit 54684e5
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
on: | ||
- push | ||
jobs: | ||
compile-sketch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: arduino/compile-sketches@v1.10 | ||
with: | ||
platforms: | | ||
- name: adafruit:samd | ||
- source-url: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json | ||
sketch-paths: | | ||
- ./ | ||
libraries: | | ||
- Adafruit BusIO | ||
- Adafruit GFX Library | ||
- Adafruit HX8357 Library | ||
- Adafruit PCF8591 | ||
- DallasTemperature | ||
- FreeRTOS SAMD51 | ||
- MQTT | ||
- OneWire | ||
- WiFiNINA |