Skip to content

Commit e0f7100

Browse files
committed
#1923 - Add compatibility builds for Kotlin, Spring and Jackson preview versions.
1 parent 49a3017 commit e0f7100

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/compatibility.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)