Files
spring-modulith/.github/workflows/integration.yaml
Oliver Drotbohm 32b689dab8 GH-244 - Upgrade to Spring Boot 3.1.2.
Updated integration CI build version matrix as well.
2023-07-20 15:09:43 +02:00

30 lines
654 B
YAML

name: Compatibility Build
on:
workflow_dispatch:
schedule:
- cron: '5 6 * * *'
jobs:
integration:
strategy:
matrix:
version: ['3.0.9', '3.0.10-SNAPSHOT', '3.1.3-SNAPSHOT', '3.2.0-M1', '3.2.0-SNAPSHOT']
name: Build against Boot ${{ matrix.version }}
runs-on: ubuntu-latest
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: Build with Maven
run: ./mvnw -B -Pwith-preview-repos -Dspring-boot.version=${{ matrix.version }}