#1923 - Add compatibility builds for Kotlin, Spring and Jackson preview versions.

This commit is contained in:
Oliver Drotbohm
2023-02-27 16:28:09 +01:00
parent 49a3017e62
commit e0f7100ea8

36
.github/workflows/compatibility.yaml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Compatibility builds
on:
workflow_dispatch:
schedule:
- cron: '5 6 * * *'
jobs:
compatibility:
runs-on: ubuntu-latest
strategy:
matrix:
spring: ['', 'spring-next']
kotlin: ['', 'kotlin-next']
jackson: ['', 'jackson-next']
name: Compatibility ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
steps:
- name: Check out sources
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: List dependencies
run: ./mvnw -D depedency:list -Dsort
- name: Build
run: ./mvnw -B verify -P${{ matrix.spring }},${{ matrix.kotlin }},${{ matrix.jackson }} --file pom.xml