Skip to content

Test CI

Test CI #1

# 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