File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change 30
30
cache : ' maven'
31
31
- run : mvn -V -B dependency-check:check
32
32
timeout-minutes : 60
33
- documentation :
34
- name : Javadoc
35
- runs-on : ubuntu-latest
36
- steps :
37
- - uses : actions/checkout@v3
38
- - uses : actions/setup-java@v3
39
- with :
40
- distribution : temurin
41
- java-version : ${{ env.DEV_JDK }}
42
- cache : ' maven'
43
- - run : mvn -V -B -q -T 1C install javadoc:javadoc -DskipTests -D'dependency-check.skip' -D'license.skip' --projects '!exist-distribution,!exist-installer' --also-make
44
33
test :
45
34
name : ${{ matrix.os }} Test
46
35
strategy :
62
51
- name : Maven Test
63
52
timeout-minutes : 60
64
53
run : mvn -V -B verify -DtrimStackTrace=false -D'dependency-check.skip' -D'license.skip'
54
+ - name : Javadoc (Linux only)
55
+ if : ${{ matrix.os == 'ubuntu-latest' }}
56
+ run : mvn -V -B -q -T 1C install javadoc:javadoc -DskipTests -D'dependency-check.skip' -D'license.skip' --projects '!exist-distribution,!exist-installer' --also-make
65
57
- name : Maven Code Coverage
66
58
if : ${{ github.ref == 'refs/heads/develop' && matrix.os == 'ubuntu-latest' }}
67
59
env :
You can’t perform that action at this time.
0 commit comments