Skip to content

Commit 5f6bc09

Browse files
authored
Define validate JavaDoc build (#2890)
1 parent d2efd68 commit 5f6bc09

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build-version.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,17 @@ jobs:
2828

2929
- name: Build with Maven
3030
run: mvn test
31+
doc-lint:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
- name: Setup JDK
36+
uses: actions/setup-java@v4
37+
with:
38+
distribution: 'temurin'
39+
java-version: '23'
40+
architecture: 'x64'
41+
cache: 'maven'
42+
43+
- name: Validate JavaDocs
44+
run: mvn javadoc:javadoc

0 commit comments

Comments
 (0)