Skip to content

Merge branch 'master-tmmsunny012' into for-iotsa #5

Merge branch 'master-tmmsunny012' into for-iotsa

Merge branch 'master-tmmsunny012' into for-iotsa #5

name: Build Examples
on:
push:
branches:
- master
- for-iotsa
jobs:
build-examples:
strategy:
matrix:
example:
- Async-Server
- Authentication
- HTML-Forms
- HTTPS-and-HTTP
- Middleware
- Parameters
- Parameter-Validation
- Put-Post-Echo
- REST-API
- Self-Signed-Certificate
- Static-Page
- Websocket-Chat
board:
- wrover
- wroom
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build example
run: ./extras/ci/scripts/build-example.sh ${{ matrix.board }} ${{ matrix.example }}