Skip to content

remove unnecessary dependencies for document generation #1

remove unnecessary dependencies for document generation

remove unnecessary dependencies for document generation #1

Workflow file for this run

name: gendoc
on:
workflow_dispatch:
push:
branches:
- doci
tags:
- '*'
jobs:
gendoc:
name: Generate documentation
runs-on: ubuntu-latest
steps:

Check failure on line 16 in .github/workflows/gendoc.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gendoc.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- uses: actions/checkout@v4
- name : Install dependencies
run: sudo apt-get install -y git cmake build-essential doxygen python3-dev python3-pip pybind11-dev libeigen3-dev libomp-dev python3-sphinx python3-sphinx-rtd-theme
- name: Install python dependencies
run: python -m pip install mkdocs mkdocs-material
-name: Generate documentation
run: |
cd docs && make all
- name: Deploy documentation
run: |
cd docs && make deploy