Skip to content

Examples

Examples #29

Workflow file for this run

name: Examples
on:
workflow_dispatch: # Manually start a workflow
push:
paths-ignore:
- '.github/**' # Ignore changes towards the .github directory
- '**.md' # Do no build if *.md files changes
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2022, macos-15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install wheel
pip install -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.18.zip
- name: Build example
run: |
pio run