Skip to content

Add support for MPU from fw 1.3.0 #43

Add support for MPU from fw 1.3.0

Add support for MPU from fw 1.3.0 #43

Workflow file for this run

name: PlatformIO CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-20.04
strategy:
matrix:
example:
- examples/motors
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install platformio
- name: Build examples
run: platformio ci --lib="." --project-conf="./platformio.ini"
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}