Skip to content

Commit 03e20bc

Browse files
authored
Replaced pip install with uv pip install for PlatformIO.
1 parent 0b405a5 commit 03e20bc

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/example.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ jobs:
2121
uses: actions/setup-python@v5
2222
with:
2323
python-version: "3.13"
24-
- name: Install dependencies
24+
- name: Install uv
25+
uses: astral-sh/setup-uv@v6
26+
with:
27+
version: "latest"
28+
enable-cache: false
29+
- name: Install pio
2530
run: |
26-
pip install wheel
27-
pip install -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
31+
uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
2832
- name: Build example
2933
run: |
3034
pio run

0 commit comments

Comments
 (0)