Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Arduino sketch for the Controller firmware via GitHub actions #32

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
- push
- pull_request
jobs:
compile_controller_board_arduino_sketch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: arduino/compile-sketches@v1
with:
fqbn: arduino:avr:nano # fully qualified board name (fqbn)
verbose: true
enable-deltas-report: true
enable-warnings-report: true
sketch-paths: Arduino/SelfomatController
libraries: |
"Adafruit NeoPixel"
"PinChangeInterrupt"