Skip to content

Commit 15334b0

Browse files
committed
Use Github workflows to compile examples and spell check
1 parent 33a2a2b commit 15334b0

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-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:samd:mkrwifi1010"
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 }}
20+
libraries: ArduinoECCX08 ArduinoBearSSL ArduinoHttpClient Arduino_JSON WiFiNINA

.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

0 commit comments

Comments
 (0)