Skip to content

add UMOL/L as allowed unit for TDN #125

add UMOL/L as allowed unit for TDN

add UMOL/L as allowed unit for TDN #125

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
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Upgrade pip
run: |
python3 -m pip install --upgrade pip
- name: Install dependencies
run: python3 -m pip install '.[complete]'
- name: Sphinx Build HTML docs
working-directory: docs
run: make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html