File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments