Skip to content

tuck diagnostic options behind long args #7

tuck diagnostic options behind long args

tuck diagnostic options behind long args #7

Workflow file for this run

name: Doxygen
on:
push:
pull_request:
branches: ["main"]
jobs:
Ubuntu:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deploy-pages.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Doxygen
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz
- name: Generate Documentation
run: doxygen
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/
- name: Deploy GitHub Pages
uses: actions/deploy-pages@v4