33 lines
938 B
YAML
33 lines
938 B
YAML
name: Examples
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
python-version: [3.7]
|
|
example:
|
|
- "examples/arduino-blink"
|
|
- "examples/arduino-blink-earlephilhower"
|
|
- "examples/arduino-external-libs"
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: "recursive"
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
|
pio pkg install --global --platform symlink://.
|
|
- name: Build examples
|
|
run: |
|
|
platformio run -d ${{ matrix.example }}
|