Skip to content

Commit aecf67f

Browse files
sandeepmistrycmaglie
authored andcommitted
Add Github workflows for compiling examples and spell checking
1 parent 1ae3323 commit aecf67f

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Compile Examples
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
7+
strategy:
8+
matrix:
9+
fqbn: [
10+
"arduino:avr:uno",
11+
"arduino:samd:mkrzero"
12+
]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
with:
17+
fetch-depth: 1
18+
- uses: arduino/actions/libraries/compile-examples@master
19+
with:
20+
fqbn: ${{ matrix.fqbn }}
21+
libraries: ArduinoRS485

.github/workflows/spell-check.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Spell Check
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
7+
steps:
8+
- uses: actions/checkout@v1
9+
with:
10+
fetch-depth: 1
11+
- uses: arduino/actions/libraries/spell-check@master

README.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
= DMX Library for Arduino =
22

3+
image:https://github.com/arduino-libraries/ArduinoDMX/workflows/Compile%20Examples/badge.svg["Compile Examples Status", link="https://github.com/arduino-libraries/ArduinoDMX/actions?workflow=Compile+Examples"] image:https://github.com/arduino-libraries/ArduinoDMX/workflows/Spell%20Check/badge.svg["Spell Check Status", link="https://github.com/arduino-libraries/ArduinoDMX/actions?workflow=Spell+Check"]
4+
35
Control DMX lights with your Arduino.
46

57
Using RS485 shields, like the MKR 485 Shield. This library depends on the ArduinoRS485 library.

0 commit comments

Comments
 (0)