Skip to content

updated list of examples #7

updated list of examples

updated list of examples #7

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/OpenIMU300RI/IMU"
- "examples/OpenIMU300ZI/INS"
- "examples/OpenIMU300ZI/VG_AHRS"
- "examples/OpenIMU335RI/VG"
- "examples/OpenRTK330LI/RTK_INS"
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 }}