Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
First attempt at a simple compile-on-push workflow
  • Loading branch information
david-griffith authored Feb 25, 2024
1 parent 32c5c9d commit 54684e5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
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

0 comments on commit 54684e5

Please sign in to comment.