Skip to content

Merge branch 'release/v2.2.0' #27

Merge branch 'release/v2.2.0'

Merge branch 'release/v2.2.0' #27

Workflow file for this run

name: Examples
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
example:
- "examples/anymcu-blink"
- "examples/anymcu-header"
- "examples/assembly-blink"
- "examples/native-blink"
- "examples/stc-blink"
- "examples/stc-header"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
pip install -U https://github.com/platformio/platformio/archive/develop.zip
pio pkg install --global --platform symlink://.
- name: Build examples
run: |
pio run -d ${{ matrix.example }}