Skip to content

Devel

Devel #421

Workflow file for this run

name: PlatformIO
on:
push:
branches:
- master
paths-ignore:
- '**/README.md'
pull_request:
branches:
- master
paths-ignore:
- '**/README.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U platformio
pio pkg update
- name: Basic Arduino IDE example test
run: |
cd examples/advanced_sensirion
pio run
- name: PlatformIO registry lastest (M5Atom project)
run: |
cd examples/m5atom
pio run
- name: All archictures tests
run: |
pio run