Skip to content

Commit 08a1018

Browse files
committed
Add GitHub Actions job for JavaDoc verification
1 parent b8475f4 commit 08a1018

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,19 @@ jobs:
3131
- name: Build with Maven
3232
run: mvn package
3333

34+
verify-javadoc:
35+
runs-on: ubuntu-latest
36+
name: Validate JavaDocs
37+
steps:
38+
- uses: actions/checkout@v4
39+
- name: Setup JDK
40+
uses: actions/setup-java@v4
41+
with:
42+
distribution: 'temurin'
43+
java-version: '23'
44+
architecture: 'x64'
45+
cache: 'maven'
46+
47+
- name: Validate JavaDocs
48+
run: mvn package -DskipTests=true javadoc:javadoc
49+

0 commit comments

Comments
 (0)