Skip to content

refactor: ✨ Add empty datasets to allow for no validation cases. #34

refactor: ✨ Add empty datasets to allow for no validation cases.

refactor: ✨ Add empty datasets to allow for no validation cases. #34

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main # or your default branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx sphinx_book_theme
pip install .
- name: Build documentation
# run: make -C docs html # Adjust the path to your docs directory if needed
run: |
cd docs
sh build_docs.sh
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html