We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25580e6 commit 5d15e57Copy full SHA for 5d15e57
1 file changed
.github/workflows/cy-arduino.yml
@@ -0,0 +1,20 @@
1
+# Workflow to check correctness of simpit Arduino lib
2
+
3
+name: CI-Arduino
4
5
+# Controls when the workflow will run
6
+on: [push, pull_request]
7
8
+# Two steps : static check for library and a compilation check for all examples.
9
+jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: arduino/arduino-lint-action@v1
15
+ with:
16
+ compliance: strict
17
+ project-type: library
18
+ - uses: arduino/compile-sketches@v1
19
20
+ fqbn: 'arduino:avr:uno'
0 commit comments