Skip to content

Commit 3d42ea0

Browse files
committed
testing eim action
1 parent d29f0e1 commit 3d42ea0

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/eim_act_test.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches:
9+
- master
10+
- release/**
11+
pull_request:
12+
branches:
13+
- master
14+
- release/**
15+
16+
jobs:
17+
build_linux:
18+
19+
runs-on: macos-latest
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
24+
- name: Set up Python
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: '3.10'
28+
29+
- name: Install ESP-IDF via eim
30+
uses: espressif/install-esp-idf-action@v1
31+
with:
32+
version: 'v5.4'
33+
34+
- name: Set up Maven
35+
uses: stCarolas/setup-maven@v5
36+
with:
37+
maven-version: 3.9.6
38+
39+
- name: Set up JDK 21
40+
uses: actions/setup-java@v4
41+
with:
42+
java-version: '21'
43+
distribution: 'temurin'
44+
cache: 'maven'

0 commit comments

Comments
 (0)