Skip to content

Add SF6 CF standard names. #163

Add SF6 CF standard names.

Add SF6 CF standard names. #163

Workflow file for this run

name: Build Docs
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Sphinx Build HTML docs
working-directory: docs
env:
SPHINXBUILD: "uv run sphinx-build"
run: make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html