File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
schedule :
6
6
- cron : ' 5 6 * * *'
7
- branches :
8
- - ' main'
9
- - ' 2.1.x'
10
- - ' 2.0.x'
11
7
12
8
jobs :
13
9
compatibility :
@@ -16,16 +12,19 @@ jobs:
16
12
17
13
strategy :
18
14
matrix :
19
- spring : ['', 'spring-next']
20
- kotlin : ['', 'kotlin-next']
15
+ branch : ['main', '2.1.x', '2.0.x']
16
+ spring : ['', 'spring-next', 'spring-61-next']
17
+ kotlin : ['', 'kotlin-next', 'kotlin-2-next']
21
18
jackson : ['', 'jackson-next']
22
19
23
- name : Compatibility ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
20
+ name : ${{ matrix.branch }} - ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
24
21
25
22
steps :
26
23
27
24
- name : Check out sources
28
25
uses : actions/checkout@v3
26
+ with :
27
+ ref : ${{ matrix.branch }}
29
28
30
29
- name : Set up JDK 17
31
30
uses : actions/setup-java@v3
You can’t perform that action at this time.
0 commit comments