Skip to content

Fix problem found with overview when using mdoclet. #76

Fix problem found with overview when using mdoclet.

Fix problem found with overview when using mdoclet. #76

Workflow file for this run

name: Java CI
on: [push, pull_request, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
java-version: [ '17' ]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install graphviz
run: sudo apt-get install -qy graphviz
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build check apidocs
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}