We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df7c97 commit d0d894cCopy full SHA for d0d894c
.github/workflows/documentation.yml
@@ -35,9 +35,16 @@ jobs:
35
run: bundle exec rake rdoc:coverage
36
- name: Check C coverage
37
run: doxygen Doxyfile
38
+
39
+ - name: Set up Java
40
+ uses: actions/setup-java@v5
41
+ with:
42
+ distribution: 'temurin'
43
+ java-version: '21'
44
+ cache: maven
45
- name: Check Java coverage
- run: javadoc -Xdoclint:all,-missing -d ../doc/java -subpackages *
- working-directory: java/api
46
+ run: mvn -f java/pom.xml -pl api -pl native attach-javadocs
47
48
- name: Generate Rust documentation
49
run: |
50
bundle exec rake cargo:build
0 commit comments