We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a3017 commit e0f7100Copy full SHA for e0f7100
.github/workflows/compatibility.yaml
@@ -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