Skip to content

Commit 9728c1b

Browse files
committed
Fix compile examples workflow
1 parent 9c72a98 commit 9728c1b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/compile-examples.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,24 @@ jobs:
3333
matrix:
3434
board:
3535
- fqbn: "esp32:esp32:esp32"
36+
type: esp32
37+
38+
include:
39+
- board:
40+
type: esp32
3641
platforms: |
3742
- name: esp32:esp32
3843
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
39-
libraries: ""
44+
libraries:
4045

4146
steps:
4247
- name: Checkout
4348
uses: actions/checkout@v3
4449

50+
- name: Install ESP32 platform dependencies
51+
if: matrix.board.type == 'esp32'
52+
run: pip3 install pyserial
53+
4554
- name: Compile examples
4655
uses: arduino/compile-sketches@main
4756
with:

0 commit comments

Comments
 (0)