Skip to content

feat(ui): honor schema multipleOf as step/decimals on number fields #202

feat(ui): honor schema multipleOf as step/decimals on number fields

feat(ui): honor schema multipleOf as step/decimals on number fields #202

Workflow file for this run

name: SensESP CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
device:
- esp32
- esp32c3
platform:
- arduino
- pioarduino
exclude:
- platform: arduino
device: esp32c3
steps:
- uses: actions/checkout@v4
- 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 dependencies
run: |
pip install --upgrade platformio
- name: Compile test suites
run: ci/run-tests.sh
env:
CI_DEVICE: ${{ matrix.device }}
CI_PLATFORM: ${{ matrix.platform }}
build:
runs-on: ubuntu-latest
strategy:
matrix:
example:
- examples/minimal_app.cpp
- examples/rpm_counter.cpp
- examples/ssl_connection.cpp
device:
- esp32
- esp32c3
platform:
- arduino
- pioarduino
exclude:
- platform: arduino
device: esp32c3
# SSL example requires pioarduino (SENSESP_SSL_SUPPORT)
- platform: arduino
example: examples/ssl_connection.cpp
steps:
- uses: actions/checkout@v4
- 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 dependencies
run: |
pip install --upgrade platformio
- name: Run PlatformIO
run: ci/run-ci.sh
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}
CI_DEVICE: ${{ matrix.device }}
CI_PLATFORM: ${{ matrix.platform }}