Merge pull request #20 from kbase/schema_updates #35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Auto-deployment of Schema Documentation | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3. | |
uses: actions/setup-python@main | |
with: | |
python-version: 3.13 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
- name: Build documentation. | |
run: | | |
uv sync | |
make gendoc-gh |