Skip to content

Add USE_LAPACK as CMake option (default: ON) (#257) #288

Add USE_LAPACK as CMake option (default: ON) (#257)

Add USE_LAPACK as CMake option (default: ON) (#257) #288

Workflow file for this run

name: Docs
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install OS dependencies
run: |
sudo apt-get install doxygen
- name: Setup Python
uses: actions/setup-python@v2
- name: Install Python dependencies
run: |
pip install sphinx sphinx-rtd-theme breathe docutils
- name: Build docs
run: |
cd docs/src && make docs && touch ../.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.2.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.