File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build Examples
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+ workflow_dispatch :
11+
12+ jobs :
13+ compile-sketch :
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - name : Checkout repository
18+ uses : actions/checkout@v4
19+
20+ - name : Compile sketches
21+ uses : arduino/compile-sketches@v1
22+ with :
23+ fqbn : " m5stack:esp32:m5stack_stamplc"
24+ platforms : |
25+ - name: "m5stack:esp32"
26+ source-url: https://static-cdn.m5stack.com/resource/arduino/package_m5stack_index.json
27+ version: "latest"
28+ libraries : |
29+ - name: M5Unified
30+ - name: M5GFX
31+ - source-path: ./
32+ sketch-paths : |
33+ - examples
34+ cli-version : latest
35+ enable-deltas-report : true
36+ enable-warnings-report : true
37+
38+ - name : Upload sketches report
39+ uses : actions/upload-artifact@v4
40+ with :
41+ name : sketches-report
42+ path : sketches-reports
You can’t perform that action at this time.
0 commit comments