Spring Boot 3.x/Spring Framework 6.x Support #40
This file contains 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: CI build | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: | |
- version: 17 | |
tasks: build jacocoTestReport testCodeCoverageReport | |
- version: 21 | |
tasks: build jacocoTestReport testCodeCoverageReport sonar | |
name: JDK ${{ matrix.jdk.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# This is needed for Sonar to do analysis | |
fetch-depth: 0 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.jdk.version }} | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run Gradle | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew -Dorg.gradle.welcome=never ${{ matrix.jdk.tasks }} |