Skip to content

Add README.md

Add README.md #84

Workflow file for this run

name: PlatformIO CI
on:
push:
branches:
- main
- devel
tags-ignore:
- '*.*.*'
paths-ignore:
- ".github/**"
- "**/*.adoc"
- "**/*.md"
- "**/*.txt"
- "library.*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
example:
- ./examples/cli/cli.ino
steps:
- uses: actions/checkout@v3
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Run PlatformIO
run: pio ci --lib="." --board=sparkfun_promicro16 --board=nano_every --board=nano_33_iot --board=teensy41 --board=esp32dev --board=nucleo_f411re
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}