Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ jobs:
- name: Install dependencies
run: |
brew install doxygen
pip3 install jinja2 Pygments
python3 -m venv venv
source venv/bin/activate
pip install jinja2 Pygments

- name: Build
run: |
source venv/bin/activate
cmake -S documentation -B build
cmake --build build --target GenerateDocs

Expand Down