File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Compile Examples
2
+
3
+ # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
4
+ on :
5
+ push :
6
+ paths :
7
+ - " .github/workflows/compile-examples-private.ya?ml"
8
+ - " library.properties"
9
+ - " examples/**"
10
+ - " src/**"
11
+ pull_request :
12
+ paths :
13
+ - " .github/workflows/compile-examples-private.ya?ml"
14
+ - " library.properties"
15
+ - " examples/**"
16
+ - " src/**"
17
+ schedule :
18
+ # Run every Tuesday at 8 AM UTC to catch breakage caused by changes to external resources (libraries, platforms).
19
+ - cron : " 0 8 * * TUE"
20
+ workflow_dispatch :
21
+ repository_dispatch :
22
+
23
+ jobs :
24
+ build :
25
+ name : ${{ matrix.board.fqbn }}
26
+ runs-on : ubuntu-latest
27
+
28
+ strategy :
29
+ fail-fast : false
30
+
31
+ matrix :
32
+ board :
33
+ - fqbn : arduino:mbed_nano:nanorp2040connect
34
+ # See: https://github.com/arduino/compile-sketches#platforms
35
+ platforms : |
36
+ - name: arduino:mbed_nano
37
+
38
+ steps :
39
+ - name : Checkout repository
40
+ uses : actions/checkout@v2
41
+
42
+ - name : Compile examples
43
+ uses : arduino/compile-sketches@v1
44
+ with :
45
+ github-token : ${{ secrets.GITHUB_TOKEN }}
46
+ fqbn : ${{ matrix.board.fqbn }}
47
+ platforms : ${{ matrix.board.platforms }}
48
+ libraries : |
49
+ # Install the library from the local path.
50
+ - source-path: ./
51
+ - name: lvgl
52
+ # Additional library dependencies can be listed here.
53
+ # See: https://github.com/arduino/compile-sketches#libraries
54
+ sketch-paths : |
55
+ - examples
Original file line number Diff line number Diff line change 4
4
===========
5
5
6
6
[ ![ Check Arduino status] ( https://github.com/arduino-libraries/Braccio_v2_library/actions/workflows/check-arduino.yml/badge.svg )] ( https://github.com/arduino-libraries/Braccio_v2_library/actions/workflows/check-arduino.yml )
7
+ [ ![ Compile Examples status] ( https://github.com/arduino-libraries/Braccio_v2_library/actions/workflows/compile-examples-private.yml/badge.svg )] ( https://github.com/arduino-libraries/Braccio_v2_library/actions/workflows/compile-examples-private.yml )
7
8
[ ![ Spell Check status] ( https://github.com/arduino-libraries/Braccio_v2_library/actions/workflows/spell-check.yml/badge.svg )] ( https://github.com/arduino-libraries/Braccio_v2_library/actions/workflows/spell-check.yml )
8
9
9
10
This library allows you to control and interact with the 6 DOF Braccio++ robot arm.
You can’t perform that action at this time.
0 commit comments