File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : PR Build Check
2+
3+ on :
4+ pull_request :
5+ branches : [main, dev]
6+ paths :
7+ - ' src/**'
8+ - ' examples/**'
9+ - ' variants/**'
10+ - ' platformio.ini'
11+ - ' .github/workflows/pr-build-check.yml'
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ environment :
20+ # ESP32-S3 (most common platform)
21+ - Heltec_v3_companion_radio_ble
22+ - Heltec_v3_repeater
23+ - Heltec_v3_room_server
24+ # nRF52
25+ - RAK_4631_companion_radio_ble
26+ - RAK_4631_repeater
27+ - RAK_4631_room_server
28+ # RP2040
29+ - PicoW_repeater
30+ # STM32
31+ - wio-e5-mini_repeater
32+ # ESP32-C6
33+ - LilyGo_Tlora_C6_repeater_
34+
35+ steps :
36+ - name : Clone Repo
37+ uses : actions/checkout@v4
38+
39+ - name : Setup Build Environment
40+ uses : ./.github/actions/setup-build-environment
41+
42+ - name : Build ${{ matrix.environment }}
43+ run : pio run -e ${{ matrix.environment }}
You can’t perform that action at this time.
0 commit comments