Skip to content

Commit 4efd219

Browse files
committed
added a dedicated platform install step in every library CI
1 parent ea21b91 commit 4efd219

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: '3.x'
23+
python-version: '3.13'
2424

2525
- name: Cache PlatformIO
2626
uses: actions/cache@v4
@@ -33,6 +33,9 @@ jobs:
3333
- name: Install PIOArduino Core
3434
run: python -m pip install --upgrade https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
3535

36+
- name: Install PIOArduino ESP32 Platform
37+
run: pio platform install https://github.com/pioarduino/platform-espressif32.git
38+
3639
- name: Build library examples (ESP32 Arduino)
3740
run: |
3841
set -e

0 commit comments

Comments
 (0)