Skip to content

Commit eb14d3e

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

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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:samd:mkrzero"
11+
]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
with:
16+
fetch-depth: 1
17+
- uses: arduino/actions/libraries/compile-examples@master
18+
with:
19+
fqbn: ${{ matrix.fqbn }}

.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
= MKRTHERM Library for Arduino =
22

3+
image:https://github.com/arduino-libraries/Arduino_MKRTHERM/workflows/Compile%20Examples/badge.svg["Compile Examples Status", link="https://github.com/arduino-libraries/Arduino_MKRTHERM/actions?workflow=Compile+Examples"] image:https://github.com/arduino-libraries/Arduino_MKRTHERM/workflows/Spell%20Check/badge.svg["Spell Check Status", link="https://github.com/arduino-libraries/Arduino_MKRTHERM/actions?workflow=Spell+Check"]
4+
35
Allows you to read the temperature sensors connected to your MKR THERM shield.
46

57
For more information about this library please visit us at https://www.arduino.cc/en/Reference/Arduino_MKRTHERM

0 commit comments

Comments
 (0)