Skip to content

Commit cdff6e9

Browse files
committed
Added GitHub workflow to build the sample project.
1 parent 295ee33 commit cdff6e9

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build ESP-IDF example project
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
- name: esp-idf build
17+
uses: espressif/esp-idf-ci-action@v1
18+
with:
19+
esp_idf_version: v5.3.2
20+
target: esp32
21+
path: examples/ESPIDFExample

0 commit comments

Comments
 (0)