Skip to content

Commit 5c0ba35

Browse files
sandeepmistrycmaglie
authored andcommitted
Add Github workflows for compiling examples and spell checking
1 parent 1e3123c commit 5c0ba35

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:mbed:nano33ble",
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
= LPS22HB Library for Arduino =
22

3+
image:https://github.com/arduino-libraries/Arduino_LPS22HB/workflows/Compile%20Examples/badge.svg["Compile Examples Status", link="https://github.com/arduino-libraries/Arduino_LPS22HB/actions?workflow=Compile+Examples"] image:https://github.com/arduino-libraries/Arduino_LPS22HB/workflows/Spell%20Check/badge.svg["Spell Check Status", link="https://github.com/arduino-libraries/Arduino_LPS22HB/actions?workflow=Spell+Check"]
4+
35
Allows you to read the pressure sensor of your Nano 33 BLE Sense.
46

57

0 commit comments

Comments
 (0)