feature: upgrade for Java 21 and Spring Boot 3.1.4 #109
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v3 | |
- name: Configure Azul Zulu OpenJDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "21" | |
distribution: "zulu" | |
- name: Maven build | |
run: mvn -B package --file pom.xml |