File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Compatibility builds
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ schedule :
6
+ - cron : ' 5 6 * * *'
7
+
8
+ jobs :
9
+ compatibility :
10
+
11
+ runs-on : ubuntu-latest
12
+
13
+ strategy :
14
+ matrix :
15
+ spring : ['', 'spring-next']
16
+ kotlin : ['', 'kotlin-next']
17
+ jackson : ['', 'jackson-next']
18
+
19
+ name : Compatibility ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
20
+
21
+ steps :
22
+
23
+ - name : Check out sources
24
+ uses : actions/checkout@v3
25
+
26
+ - name : Set up JDK 17
27
+ uses : actions/setup-java@v3
28
+ with :
29
+ distribution : ' temurin'
30
+ java-version : 17
31
+ cache : ' maven'
32
+
33
+ - name : List dependencies
34
+ run : ./mvnw -D depedency:list -Dsort
35
+ - name : Build
36
+ run : ./mvnw -B verify -P${{ matrix.spring }},${{ matrix.kotlin }},${{ matrix.jackson }} --file pom.xml
You can’t perform that action at this time.
0 commit comments