Skip to content

Update library.json #30

Update library.json

Update library.json #30

Workflow file for this run

name: PlatformIO CI
on:
push:
pull_request:
release:
types: [ published, created, edited ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
example: ["examples/print_demo/print_demo.ino"]
steps:
- uses: actions/checkout@v4
- name: Cache PlatformIO
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install PlatformIO
run: pip install --upgrade platformio
- name: Build
run: pio ci --lib="." --board=esp32dev --project-option="lib_deps=SPI, Wire, adafruit/Adafruit BusIO, adafruit/Adafruit GFX Library"
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}