Skip to content

Commit

Permalink
#1923 - Add compatibility builds for Kotlin, Spring and Jackson previ…
Browse files Browse the repository at this point in the history
…ew versions.
  • Loading branch information
odrotbohm committed Feb 27, 2023
1 parent 49a3017 commit e0f7100
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/compatibility.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e0f7100

Please sign in to comment.