Skip to content

4 mettre a jour les exemples d'utilisation #1

4 mettre a jour les exemples d'utilisation

4 mettre a jour les exemples d'utilisation #1

Workflow file for this run

name: PlatformIO CI
description: Build the project with PlatformIO
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- 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 Core
run: pip install --upgrade platformio
# install the libraries before compiling
# otherwise compilation might fail to find the just-installed libraries
# - name: Install platformIO libraries
# run: pio lib install
- name: PlatformIO Build All
run: pio run