Skip to content

Improve const-correctness for BppTree accessors #75

Improve const-correctness for BppTree accessors

Improve const-correctness for BppTree accessors #75

Workflow file for this run

name: Docs
on:
#push:
# branches-ignore:
# - '**'
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Requirements
run: sudo apt-get install doxygen
&& sudo apt-get install python3-sphinx
&& pip3 install sphinx-rtd-theme
&& pip3 install breathe
&& pip3 install sphinx-sitemap
- name: Checkout repo
uses: actions/[email protected]
- name: Build docs
run: cd docs
&& make clean html
&& cd _build/html
&& touch .nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: docs/_build/html # The folder the action should deploy.