Skip to content

Commit a7dfb1f

Browse files
committed
build steps sample matrix updated
1 parent c43c61d commit a7dfb1f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-rpipicow.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
example: [examples/Switch/Switch]
16+
example: [examples/ACUnit, examples/AirQualitySensor/AirQualitySensor, examples/Blinds, examples/ContactSensor, examples/DimSwitch, examples/doorbell, examples/Fan, examples/GarageDoor, examples/Light/Light, examples/Lock/Lock, examples/Lock/Lock_with_feedback, examples/MotionSensor, examples/PowerSensor, examples/Relay/MultiRelays_advance, examples/Relay/Relay, examples/Speaker, examples/Switch/MultiSwitch_advance, examples/Switch/MultiSwitch_beginner, examples/Switch/MultiSwitch_intermediate, examples/Switch/Switch, examples/Thermostat, examples/TV]
1717

1818
steps:
1919
- name: Step 1 - Checkout Repo
2020
uses: actions/checkout@v3
2121
with:
2222
submodules: "recursive"
23-
- name: Set up Python
23+
- name: Step 2 - Set up Python
2424
uses: actions/setup-python@v3
2525
with:
2626
python-version: "3.9"
27-
- name: Install dependencies
27+
- name: Step 3 - Install dependencies
2828
run: |
2929
pip install -U https://github.com/platformio/platformio/archive/develop.zip
3030
pio pkg install --global --platform https://github.com/maxgerhardt/platform-raspberrypi.git
31-
- name: Install library dependencies
31+
- name: Step 4 - Install library dependencies
3232
run: |
3333
pio lib --global install "bblanchon/ArduinoJson"
3434
pio lib --global install "links2004/WebSockets"
35-
- name: Step 7 - Run build test using PlatformIO
35+
- name: Step 5 - Run build test using PlatformIO
3636
run: pio ci --lib="." -b rpipicow
3737
env:
3838
PLATFORMIO_CI_SRC: ${{ matrix.example }}

0 commit comments

Comments
 (0)