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 819e2ca commit 8e3efc3Copy full SHA for 8e3efc3
.github/workflows/doclint-version.yml
@@ -0,0 +1,25 @@
1
+name: doclint
2
+on:
3
+ push:
4
+ branches:
5
+ - version/**
6
+ pull_request:
7
8
9
+
10
+jobs:
11
+ doc-lint:
12
+ runs-on: ubuntu-latest
13
+ name: Validate JavaDocs
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Setup JDK
17
+ uses: actions/setup-java@v4
18
+ with:
19
+ distribution: 'temurin'
20
+ java-version: '21'
21
+ architecture: 'x64'
22
+ cache: 'maven'
23
24
+ - name: Validate JavaDocs
25
+ run: mvn javadoc:javadoc
0 commit comments