File tree Expand file tree Collapse file tree 3 files changed +43
-17
lines changed
Expand file tree Collapse file tree 3 files changed +43
-17
lines changed Original file line number Diff line number Diff line change 1+ name : Test PlatformIO support
2+
3+ on :
4+ push :
5+ branches : [ "master" ]
6+ pull_request :
7+ branches : [ "master" ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ strategy :
15+ matrix :
16+ example :
17+ - examples/AnalogRead_DigitalRead/AnalogRead_DigitalRead.ino
18+
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v3
22+
23+ - name : Cache
24+ uses : actions/cache@v3
25+ with :
26+ path : |
27+ ~/.cache/pip
28+ ~/.platformio/.cache
29+ key : ${{ runner.os }}-pio
30+
31+ - name : Install python
32+ uses : actions/setup-python@v4
33+ with :
34+ python-version : ' 3.10'
35+
36+ - name : Install PlatformIO Core
37+ run : pip install --upgrade platformio
38+
39+ - name : Build PlatformIO examples
40+ run : PIO ci --lib="." --board=uno --board=leonardo --board=sanguino_atmega1284p --board=megaatmega2560 ${{ matrix.example }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Ignore .development file, https://arduino.github.io/arduino-cli/library-specification/#development-flag-file
22.development
3+
4+ # Ignore CLion IDE folder
5+ .idea
You can’t perform that action at this time.
0 commit comments