File tree 5 files changed +20
-75
lines changed
5 files changed +20
-75
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : JDK8
1
+ name : Atmopshere 3.x CI
2
2
3
- on : [push, pull_request]
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+ pull_request :
7
+ branches : [ main ]
4
8
5
9
jobs :
6
10
build :
7
-
8
11
runs-on : ubuntu-latest
9
12
13
+ strategy :
14
+ matrix :
15
+ java-version : [18, 21]
16
+
10
17
steps :
11
- - uses : actions/checkout@v1
12
- - name : Set up JDK 1.8
13
- uses : actions/setup-java@v1
18
+ - uses : actions/checkout@v2
19
+
20
+ - name : Set up JDK ${{ matrix.java-version }}
21
+ uses : actions/setup-java@v2
14
22
with :
15
- java-version : 1.8
23
+ java-version : ${{ matrix.java-version }}
24
+ distribution : ' temurin'
25
+
16
26
- name : Build with Maven
17
27
run : mvn -B package --file pom.xml
28
+
29
+ - name : Test with Maven
30
+ run : mvn -B test --file pom.xml
You can’t perform that action at this time.
0 commit comments