File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ name : SILABS
2+ on : [push, pull_request]
3+ jobs :
4+ lint :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v2
8+ - uses : arduino/arduino-lint-action@v1
9+ with :
10+ library-manager : update
11+ project-type : library
12+ build :
13+ name : Test compiling
14+ runs-on : ubuntu-latest
15+
16+ strategy :
17+ matrix :
18+ arduino-boards-fqbn :
19+ - SiliconLabs:silabs:nano_matter # efr32 nano matter
20+
21+ include :
22+
23+ - arduino-boards-fqbn : SiliconLabs:silabs:nano_matter
24+ platform-url : https://siliconlabs.github.io/arduino/package_arduinosilabs_index.json
25+ sketch-names : efr32_hall_sensor_velocity_6pwm.ino, efr32_open_loop_velocity_6pwm.ino, efr32_torque_velocity_6pwm.ino
26+
27+ # Do not cancel all jobs / architectures if one job fails
28+ fail-fast : false
29+ steps :
30+ - name : Checkout
31+ uses : actions/checkout@master
32+ - name : Compile all examples
33+ uses : ArminJo/arduino-test-compile@master
34+ with :
35+ arduino-board-fqbn : ${{ matrix.arduino-boards-fqbn }}
36+ required-libraries : ${{ matrix.required-libraries }}
37+ platform-url : ${{ matrix.platform-url }}
38+ sketch-names : ${{ matrix.sketch-names }}
39+ sketches-exclude : ${{ matrix.sketches-exclude }}
40+ build-properties : ${{ toJson(matrix.build-properties) }}
41+
You can’t perform that action at this time.
0 commit comments