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 0c767e5 commit cd487c1Copy full SHA for cd487c1
1 file changed
.github/platformio.yml
@@ -0,0 +1,30 @@
1
+name: PlatformIO CI
2
+
3
+on:
4
+ push:
5
+ release:
6
+ types: [published]
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/cache@v4
16
+ with:
17
+ path: |
18
+ ~/.cache/pip
19
+ ~/.platformio/.cache
20
+ key: ${{ runner.os }}-pio-2026
21
+ - uses: actions/setup-python@v5
22
23
+ python-version: '3.11'
24
+ - name: Install PlatformIO Core
25
+ run: pip install --upgrade platformio
26
27
+ - name: Build PlatformIO Project
28
+ run: pio run
29
30
0 commit comments