Skip to content

Commit

Permalink
Added a GitHub action for the ESP-IDF project.
Browse files Browse the repository at this point in the history
  • Loading branch information
pvginkel committed Dec 25, 2024
1 parent 14f8a81 commit dadcb16
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_examples_esp_idf_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build examples for an ESP-IDF project

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: esp-idf build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.3.2
target: esp32
path: extras/idf_project_example

0 comments on commit dadcb16

Please sign in to comment.