File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
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
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-java@v2
15
+ with :
16
+ distribution : ' temurin'
17
+ java-version : ' 17'
18
+ check-latest : true
19
+ - run : mvn clean install
Original file line number Diff line number Diff line change
1
+ 17
Original file line number Diff line number Diff line change 12
12
13
13
<properties >
14
14
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
- <maven .compiler.source>14 </maven .compiler.source>
16
- <maven .compiler.target>14 </maven .compiler.target>
15
+ <maven .compiler.source>17 </maven .compiler.source>
16
+ <maven .compiler.target>17 </maven .compiler.target>
17
17
</properties >
18
18
19
19
</project >
You can’t perform that action at this time.
0 commit comments