Skip to content

Merge pull request #3257 from deka27/keyword-reconst #9

Merge pull request #3257 from deka27/keyword-reconst

Merge pull request #3257 from deka27/keyword-reconst #9

Workflow file for this run

name: Build docs
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[extra]
pip install .[doc]
- name: Build documentation
run: |
cd doc
make -C . html-no-examples