Skip to content

changed the title of the sphinx project. #22

changed the title of the sphinx project.

changed the title of the sphinx project. #22

Workflow file for this run

# This workflow will build the sphinx document.
name: sphinx-build
on:
push:
branches: [ "main", "devel"]
jobs:
sphinx-build:
runs-on: ubuntu-latest
steps:
- name: Install and Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install python dependencies
run: pip install sphinx sphinx-rtd-theme
- name: Checkout the project repository
uses: actions/checkout@v2
- name: Build the sphinx document.
run: |
make html