Skip to content

Add none to switch

Add none to switch #33

Workflow file for this run

name: ESP-IDF CI
on: [workflow_call, push]
jobs:
esp_idf_build:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- name: v443_build
version_number: v4.4.3
target: esp32c3
- name: v512_build
version_number: v5.1.2
target: esp32c6
- name: v52_build
version_number: v5.2.1
target: esp32c6
example:
- name: simple
steps:
- name: Checkout repo
uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Generate html
run: python binary_to_h.py html/ota.html src/impl/ota_html.h
- name: ESP-IDF Build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: ${{ matrix.version.version_number }}
target: ${{ matrix.version.target }}
path: examples/espidf/${{ matrix.example.name }}