Skip to content

Make VariantBean.gender optional and remove provisional enum value #25

Make VariantBean.gender optional and remove provisional enum value

Make VariantBean.gender optional and remove provisional enum value #25

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
types: [ opened, reopened, synchronize ]
permissions:
contents: read
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Setup UV
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies
run: uv sync --extra docs
- name: Build documentation
run: |
cd docs
uv run sphinx-build -b html -j auto -a -n -T -W --keep-going . _build/html
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Setup UV
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies
run: uv sync
- name: Build distributions
run: uv build