Skip to content

Typos doc

Typos doc #1

Workflow file for this run

name: BiRD-build-documentation
on:
push:
branches: [ main ]
paths:
- 'docs/**'
- '.github/workflows/docs_pages.yml'
pull_request:
branches: [main]
paths:
- 'docs/**'
- '.github/workflows/docs_pages.yml'
jobs:
build_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx_rtd_theme
- name: Build documentation
run: |
cd docs
make html