Skip to content

Commit 8e3efc3

Browse files
authored
Add doclint job (#2893)
1 parent 819e2ca commit 8e3efc3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/doclint-version.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: doclint
2+
on:
3+
push:
4+
branches:
5+
- version/**
6+
pull_request:
7+
branches:
8+
- version/**
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

Comments
 (0)