Skip to content

Commit e643c37

Browse files
committed
#2056 - Polishing.
1 parent e23eb6b commit e643c37

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/compatibility.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
workflow_dispatch:
55
schedule:
66
- cron: '5 6 * * *'
7-
branches:
8-
- 'main'
9-
- '2.1.x'
10-
- '2.0.x'
117

128
jobs:
139
compatibility:
@@ -16,16 +12,19 @@ jobs:
1612

1713
strategy:
1814
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']
2118
jackson: ['', 'jackson-next']
2219

23-
name: Compatibility ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
20+
name: ${{ matrix.branch }} - ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
2421

2522
steps:
2623

2724
- name: Check out sources
2825
uses: actions/checkout@v3
26+
with:
27+
ref: ${{ matrix.branch }}
2928

3029
- name: Set up JDK 17
3130
uses: actions/setup-java@v3

0 commit comments

Comments
 (0)