Update dependency org.springframework.boot:spring-boot-starter-parent… #284
Workflow file for this run
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: "test build" | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
name: "JDK ${{ matrix.java }} build" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '21' ] | |
steps: | |
- name: "check out code" | |
uses: actions/checkout@v4 | |
- name: "set up JDK ${{ matrix.java }}" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: "build and test with Maven" | |
run: mvn -B clean install | |