Rename led_strip to led_strip_ws2812_custom #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build project' | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
schedule: | |
- cron: '0 1 * * 6' | |
jobs: | |
build-example: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
idf_ver: ["release-v5.0", "release-v5.1", "latest"] | |
idf_target: ["esp32", "esp32s3"] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Build example | |
uses: espressif/esp-idf-ci-action@v1 | |
with: | |
esp_idf_version: ${{ matrix.idf_ver }} | |
target: ${{ matrix.idf_target }} | |
# root directory of the project | |
path: . |