File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Check Arduino
2
+
3
+ # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
4
+ on :
5
+ push :
6
+ pull_request :
7
+ schedule :
8
+ # Run every Tuesday at 8 AM UTC to catch breakage caused by new rules added to Arduino Lint.
9
+ - cron : " 0 8 * * TUE"
10
+ workflow_dispatch :
11
+ repository_dispatch :
12
+
13
+ jobs :
14
+ lint :
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - name : Checkout repository
19
+ uses : actions/checkout@v2
20
+
21
+ - name : Arduino Lint
22
+ uses : arduino/arduino-lint-action@v1
23
+ with :
24
+ compliance : specification
25
+ library-manager : update
26
+ # Always use this setting for official repositories. Remove for 3rd party projects.
27
+ official : true
Original file line number Diff line number Diff line change 1
1
` ArduinoIoTCloud `
2
2
=================
3
+
4
+ [ ![ Check Arduino status] ( https://github.com/arduino-libraries/ArduinoIoTCloud/actions/workflows/check-arduino.yml/badge.svg )] ( https://github.com/arduino-libraries/ArduinoIoTCloud/actions/workflows/check-arduino.yml )
3
5
[ ![ Compile Examples] ( https://github.com/arduino-libraries/ArduinoIoTCloud/workflows/Compile%20Examples/badge.svg )] ( https://github.com/arduino-libraries/ArduinoIoTCloud/actions?workflow=Compile+Examples )
4
6
[ ![ Spell Check] ( https://github.com/arduino-libraries/ArduinoIoTCloud/workflows/Spell%20Check/badge.svg )] ( https://github.com/arduino-libraries/ArduinoIoTCloud/actions?workflow=Spell+Check )
5
7
[ ![ Unit Tests] ( https://github.com/arduino-libraries/ArduinoIoTCloud/workflows/Unit%20Tests/badge.svg )] ( https://github.com/arduino-libraries/ArduinoIoTCloud/actions?workflow=Unit+Tests )
You can’t perform that action at this time.
0 commit comments