Skip to content

Fix micropython axp2101 getTemperature #22

Fix micropython axp2101 getTemperature

Fix micropython axp2101 getTemperature #22

Workflow file for this run

name: PlatformIO CI
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 10 in .github/workflows/pio.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pio.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
example: [examples/AXP192_Example/AXP192_Example.ino,examples/AXP202_Example/AXP202_Example.ino,examples/AXP2101_Charge_Example/AXP2101_Charge_Example.ino,examples/AXP2101_Example/AXP2101_Example.ino,examples/AXP2101_InterruptExample/AXP2101_InterruptExample.ino,examples/AXP2101_Voltage_Example/AXP2101_Voltage_Example.ino,examples/XPowersLibInterface_Example/XPowersLibInterface_Example.ino,,examples/AXP2101_Voltage_Example/AXP2101_ADC_Example.ino]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Run PlatformIO
run: pio ci --lib="." --board=esp32dev --board=esp32-c3-devkitm-1
env:
PLATFORMIO_BUILD_FLAGS: -D XPOWERS_NO_ERROR
PLATFORMIO_CI_SRC: ${{ matrix.example }}