Reorganise docs for nicer custom sub-pages and add better build instructions #1
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: Docs Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
tags: | |
- "**" | |
paths: | |
- "src/**" | |
- "docs/**" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "src/**" | |
- "docs/**" | |
jobs: | |
doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Install Doxygen | |
uses: ssciwr/doxygen-install@v1 | |
with: | |
version: "1.10.0" | |
- name: Generate documentation | |
working-directory: docs | |
run: doxygen |