Merge pull request #239 from mskacelik/issue-238 #475
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 with Maven | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-test: | |
| name: JDK ${{matrix.java-version}} JVM build and tests | |
| timeout-minutes: 120 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java-version: [21] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| name: checkout | |
| - uses: actions/setup-java@v5 | |
| name: Set up JDK ${{ matrix.java-version }} | |
| with: | |
| distribution: "temurin" | |
| java-version: ${{ matrix.java-version }} | |
| - name: Build with Maven | |
| run: ./mvnw -B install |