We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71922e0 commit 040c0b3Copy full SHA for 040c0b3
1 file changed
.github/workflows/ci-boot.yml
@@ -0,0 +1,36 @@
1
+name: CI (Spring Boot matrix)
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
+ paths-ignore:
9
+ - '.github/**'
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ spring-boot-version:
19
+ - 4.0.6-SNAPSHOT
20
+ - 4.1.0-SNAPSHOT
21
22
+ name: Boot ${{ matrix.spring-boot-version }}
23
24
+ steps:
25
+ - name: Checkout source code
26
+ uses: actions/checkout@v4.2.2
27
28
+ - name: Set up JDK 17
29
+ uses: actions/setup-java@v4.7.1
30
+ with:
31
+ java-version: '17'
32
+ distribution: 'temurin'
33
+ cache: 'maven'
34
35
+ - name: Build with Maven
36
+ run: ./mvnw -Dspring-boot.version=${{ matrix.spring-boot-version }} --no-transfer-progress --batch-mode --update-snapshots install
0 commit comments