chore: Add PlatformIO workflow to run examples

This commit is contained in:
Francois Best 2021-08-10 14:10:39 +02:00
parent d242e2b7f0
commit 972f5e2c83
1 changed files with 53 additions and 0 deletions

53
.github/workflows/platformio.yml vendored Normal file
View File

@ -0,0 +1,53 @@
name: PlatformIO CI
on: [push]
jobs:
platformio:
runs-on: ubuntu-latest
strategy:
matrix:
example:
- examples/AltPinSerial
- examples/Basic_IO
- examples/Bench
- examples/Callbacks
- examples/DualMerger
- examples/ErrorCallback
- examples/Input
- examples/RPN_NRPN
- examples/SimpleSynth
steps:
- uses: actions/checkout@v2
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v2
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v2
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Run PlatformIO
run: pio ci --lib="." \
--board="uno" \
--board="due" \
--board="zero" \
--board="leonardo" \
--board="micro" \
--board="nanoatmega328" \
--board="megaatmega2560" \
--board="teensy2" \
--board="teensy30" \
--board="teensy31" \
--board="teensylc"
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}