fix github actions and upgrade to jdk 21 #24
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: Feature Branch | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
jobs: | |
test: | |
name: Unit Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 21 | |
cache: maven | |
- name: Maven test | |
run: mvn -B clean test | |
- name: Maven Verify | |
run: mvn -B clean verify -q |