Bump org.springframework.boot:spring-boot-starter-parent #464
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: Java CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [ '17', '20' ] | |
| name: Java ${{ matrix.java }} | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v3 | |
| - name: Setup Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: Compile all modules | |
| run: ./mvnw -B -Dstyle.color=always test-compile --file pom.xml | |
| - name: Test Adding Spring Security module | |
| run: ./mvnw -B -Dstyle.color=always verify --file adding-spring-security/pom.xml | |
| - name: Spotless Check | |
| run: ./mvnw -B -Dstyle.color=always spotless:check |