File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,7 @@ end_of_line = lf
66indent_size = 4
77indent_style = space
88insert_final_newline = true
9- trim_trailing_whitespace = true
9+ trim_trailing_whitespace = true
10+
11+ [* .yml ]
12+ indent_size = 2
Original file line number Diff line number Diff line change 1+ name : Maven Build
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+ name : maven build
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4
16+
17+ # Build with JDK 17
18+ - name : Set up JDK 17
19+ uses : actions/setup-java@v4
20+ with :
21+ cache : maven
22+ java-version : ' 17'
23+ distribution : ' temurin'
24+ - name : Build with Maven
25+ run : mvn -B package --file pom.xml
26+
27+ # Upload coverage reports to Codecov
28+ - name : Upload coverage reports to Codecov
29+ uses : codecov/codecov-action@v4
30+ with :
31+ token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments