We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e23eb6b commit fe6ce5fCopy full SHA for fe6ce5f
.github/workflows/compatibility.yaml
@@ -4,10 +4,6 @@ on:
4
workflow_dispatch:
5
schedule:
6
- cron: '5 6 * * *'
7
-branches:
8
- - 'main'
9
- - '2.1.x'
10
- - '2.0.x'
11
12
jobs:
13
compatibility:
@@ -16,16 +12,19 @@ jobs:
16
17
strategy:
18
14
matrix:
15
+ branch: ['main', '2.1.x', '2.0.x']
19
spring: ['', 'spring-next']
20
- kotlin: ['', 'kotlin-next']
+ kotlin: ['', 'kotlin-next', 'kotlin-2-next']
21
jackson: ['', 'jackson-next']
22
23
- name: Compatibility ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
+ name: ${{ branch }}: ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
24
25
steps:
26
27
- name: Check out sources
28
uses: actions/checkout@v3
+ with:
+ ref: ${{ matrix.branch }}
29
30
- name: Set up JDK 17
31
uses: actions/setup-java@v3
0 commit comments