Add clumerge() documentation link #13
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 | |
on: | |
push: | |
tags: 'v*' | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
lfs: true | |
- name: Install Octave and xvfb | |
run: | | |
sudo apt update | |
sudo apt install -y octave octave-statistics xvfb | |
- name: Build docs | |
run: | | |
pip3 install --user --upgrade pip | |
pip3 install --user mkdocs-material | |
cd docs | |
python3 mocdoc.py | |
./run_moc_in_md.sh docs/examples.md | |
mkdocs build | |
- name: Deploy to GitHub pages 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
folder: docs/site |