Test CI #1
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
# Simple workflow for deploying documentation content to GitHub Pages | |
name: Test Documentation Build | |
on: | |
# The push is just for testing | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [main] | |
jobs: | |
# Single deploy job since we're just deploying | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build documentation | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git cmake doxygen graphviz | |
cmake -B build -S . | |
cmake --build build --target documentation |