Skip to content

Commit

Permalink
backport from spring 3.1.x integration
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmosmann committed Sep 15, 2023
1 parent 6576f12 commit 638dd2f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build

on: [ push ]

jobs:
build:
strategy:
fail-fast: false
matrix:
# todo version ranges may be better, but they don't work with dependencyManagement in maven 3
version:
- '2.7.15'
- '3.0.10'
os:
- ubuntu-latest
- windows-latest

runs-on: ${{ matrix.os }}

steps:

- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven

- name: Build with Maven
run: ./mvnw test -D"spring.boot.version=${{ matrix.version }}"

0 comments on commit 638dd2f

Please sign in to comment.