12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
- # This workflow uses actions that are not certified by GitHub.
- # They are provided by a third-party and are governed by
- # separate terms of service, privacy policy, and support
- # documentation.
- name: Java CI with Maven
- on:
- push:
- branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
- permissions:
- contents: read
- jobs:
- test:
- runs-on: ${{ matrix.os }}
- permissions:
- contents: read
- strategy:
- matrix:
- os: [ ubuntu-latest ]
- java: [ 8, 11, 17, 21 ]
- fail-fast: false
- max-parallel: 16
- name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
- steps:
- - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- - name: Set up JDK
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
- with:
- distribution: 'temurin'
- java-version: ${{ matrix.java }}
- cache: 'maven'
- - name: Build with Maven if test jdk8
- if: ${{ matrix.java == '8' || matrix.java == '11'}}
- run: ./mvnw -Pgen-javadoc clean package -B
- - name: Build with Maven if test jdk17
- if: ${{ matrix.java == '17' || matrix.java == '21' }}
- run: ./mvnw -Penable-for-jdk17+,gen-code-cov clean package -B
|