fixed github actions #144
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 Matrix CI | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Java 21 test build | |
| steps: | |
| - name: "Check out code" | |
| uses: actions/checkout@v5 | |
| - name: "Set up JDK" | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: "zulu" | |
| cache: 'maven' | |
| - name: "Build with Maven" | |
| run: mvn -B clean install |