Skip to content

Commit 7c0ecdd

Browse files
sandeepmistrycmaglie
authored andcommitted
Add Github workflows for compiling examples and spell checking
1 parent b6f05dd commit 7c0ecdd

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed
+19
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

+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
= ArduinoGraphics Library for Arduino =
22

3+
image:https://github.com/arduino-libraries/ArduinoGraphics/workflows/Compile%20Examples/badge.svg["Compile Examples Status", link="https://github.com/arduino-libraries/ArduinoGraphics/actions?workflow=Compile+Examples"] image:https://github.com/arduino-libraries/ArduinoGraphics/workflows/Spell%20Check/badge.svg["Spell Check Status", link="https://github.com/arduino-libraries/ArduinoGraphics/actions?workflow=Spell+Check"]
4+
35
Core graphics library for Arduino. Based on the Processing API.
46

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

0 commit comments

Comments
 (0)