Skip to content

Goodness-of-Fit Scoring, QOL, and Functional Updates (#22) #16

Goodness-of-Fit Scoring, QOL, and Functional Updates (#22)

Goodness-of-Fit Scoring, QOL, and Functional Updates (#22) #16

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
id-token: write
pages: write
contents: read
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build_docs_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install .
pip install -r ./docs/requirements.txt
- name: Sphinx build
run: |
cd docs
sudo apt install graphviz
make clean html
- name: Sanity check
run: |
pwd
tree docs
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: "./docs/build/html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4