This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
Fix integer underflow on empty data vector #496
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: Documentation | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docs: | |
name: "Doc Build" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 13 | |
- name: Build Doxygen | |
run: ./gradlew doxygen |