Skip to content

Commit

Permalink
Added GitHub workflow to build the sample project.
Browse files Browse the repository at this point in the history
  • Loading branch information
pvginkel committed Dec 25, 2024
1 parent 295ee33 commit cdff6e9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build_examples_esp_idf_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build ESP-IDF example project

on:
push:
branches: [main]
pull_request:
branches: [main]

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: examples/ESPIDFExample

0 comments on commit cdff6e9

Please sign in to comment.