We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e0194 commit ed734c9Copy full SHA for ed734c9
.github/workflows/ci-docs.yml
@@ -5,7 +5,7 @@ jobs:
5
name: ${{ matrix.jdk }} Javadocs
6
strategy:
7
matrix:
8
- jdk: ['11', '16']
+ jdk: ['8','11', '16']
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v2
@@ -22,6 +22,10 @@ jobs:
22
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23
restore-keys: ${{ runner.os }}-m2
24
- name: Maven Javadoc
25
+ if: ${{ matrix.jdk == '8' }}
26
run: mvn -V -B -q -T 2C javadoc:javadoc
- continue-on-error: true
27
+ - name: Maven Javadoc allow fail
28
+ if: ${{ matrix.jdk != '8' }}
29
+ run: mvn -V -B -q -T 2C javadoc:javadoc
30
+ continue-on-error: true
31
0 commit comments