We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a77f979 commit 55a19c0Copy full SHA for 55a19c0
1 file changed
.github/workflows/build-rpi.yml
@@ -66,24 +66,18 @@ jobs:
66
steps:
67
- name: Checkout
68
uses: actions/checkout@v5
69
-
70
- # - name: Cache PlatformIO
71
- # uses: actions/cache@v4
72
- # with:
73
- # key: ${{ runner.os }}-pio
74
- # path: |
75
- # ~/.cache/pip
76
- # ~/.platformio
77
78
- name: Python
79
uses: actions/setup-python@v6
80
with:
81
- python-version: "3.x"
82
83
- - name: Install PIO
+ python-version: "3.13"
+ - name: Install uv
+ uses: astral-sh/setup-uv@v6
+ with:
+ version: "latest"
+ enable-cache: false
+ - name: Install platformio
84
run: |
85
- python -m pip install --upgrade pip
86
- pip install --upgrade platformio
+ uv pip install --system -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
87
88
- name: Build Examples
89
0 commit comments