Skip to content

Commit

Permalink
CI action to check if the Arduino code successfully compiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
KockaAdmiralac committed Aug 20, 2024
1 parent b8132ad commit 5f2941f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Compile Arduino code

on:
- push
- workflow_dispatch

jobs:
compile:
runs-on: ubuntu-latest
name: Compile
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: arduino/compile-sketches@v1
with:
fqbn: "arduino:avr:mega"
libraries: |
- name: Servo
- name: AccelStepper

0 comments on commit 5f2941f

Please sign in to comment.