feat: spring boot 4 starter (#771) #542
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: spring-boot-compatibility | |
| on: [push] | |
| jobs: | |
| build-boot3: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| spring-boot: [ '2.7.18', '3.3.13', '3.4.5', '3.5.8' ] | |
| name: Spring Boot 3 - ${{ matrix.spring-boot }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Run Spring Boot 3 tests | |
| run: mvn -B -Dspring-boot.version=${{ matrix.spring-boot }} -PspringBootDevelopment clean test -pl db-scheduler-spring-boot-starter-parent/db-scheduler-spring-boot3-starter | |
| env: | |
| TZ: UTC | |
| build-boot4: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| spring-boot: [ '4.0.1' ] | |
| name: Spring Boot 4 - ${{ matrix.spring-boot }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Run Spring Boot 4 tests | |
| run: mvn -B -Dspring-boot-4.version=${{ matrix.spring-boot }} -PspringBootDevelopment clean test -pl db-scheduler-spring-boot-starter-parent/db-scheduler-spring-boot4-starter | |
| env: | |
| TZ: UTC |