This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
Drone fix, sorry #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Javadocs | |
on: | |
pull_request: | |
types: | |
- opened | |
workflow_dispatch: | |
# Jobs | |
jobs: | |
# Generate the docs. | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Install dependencies | |
run: sudo apt-get install -y graphviz | |
- name: Build and generate Javadocs | |
run: ./gradlew generateDebugJavadoc -PgenerateUML --no-daemon |