Skip to content

Commit 49a3496

Browse files
sandeepmistrycmaglie
authored andcommitted
Add Github workflows for compiling examples and spell checking
1 parent f840235 commit 49a3496

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 }}

.github/workflows/spell-check.yml

+11
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

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
= RS485 Library for Arduino =
22

3+
image:https://github.com/arduino-libraries/ArduinoRS485/workflows/Compile%20Examples/badge.svg["Compile Examples Status", link="https://github.com/arduino-libraries/ArduinoRS485/actions?workflow=Compile+Examples"] image:https://github.com/arduino-libraries/ArduinoRS485/workflows/Spell%20Check/badge.svg["Spell Check Status", link="https://github.com/arduino-libraries/ArduinoRS485/actions?workflow=Spell+Check"]
4+
35
Enables sending and receiving data using the RS485 standard with RS485 shields, like the MKR 485 Shield.
46

57
This library supports the Maxim Integrated MAX3157 and equivalent chipsets.

0 commit comments

Comments
 (0)