Skip to content

Remove warnings on some platforms. #1

Remove warnings on some platforms.

Remove warnings on some platforms. #1

Workflow file for this run

name: Examples
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
platformio:
name: PlatformIO (${{ matrix.environment }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
environment: [uno, esp32, pico]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Cache PlatformIO core
uses: actions/cache@v4
with:
path: |
~/.platformio/.cache
~/.platformio/packages
~/.platformio/platforms
key: pio-${{ matrix.environment }}-${{ hashFiles('examples/platformio/platformio.ini') }}
- name: Install PlatformIO
run: pip install --upgrade platformio
- name: Build
working-directory: examples/platformio
run: pio run -e ${{ matrix.environment }}