Skip to content

Add BSD calibration tutorial and result to docs #19

Add BSD calibration tutorial and result to docs

Add BSD calibration tutorial and result to docs #19

Workflow file for this run

name: BiRD-build-documentation
on:
pull_request:
branches: [ main ]
paths:
- 'docs/**'
- '.github/workflows/build_docs.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