Skip to content

Commit 8f753d5

Browse files
committed
Compile library examples via Github actions
1 parent d6fba6a commit 8f753d5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Compile Library 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+
"arduino:samd:nano_33_iot",
12+
"arduino:megaavr:uno2018:mode=on",
13+
"arduino:mbed:nano33ble"
14+
]
15+
16+
steps:
17+
- uses: actions/checkout@v1
18+
with:
19+
fetch-depth: 1
20+
- uses: arduino-libraries/actions/compile-examples@master
21+
with:
22+
fqbn: ${{ matrix.fqbn }}

0 commit comments

Comments
 (0)