Drop src/pylife/materialdata/woehler/bayesian.py from test coverage #296
This file contains 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: Documentation | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
- ci-debug | |
schedule: | |
- cron: "0 12 * * 0" | |
jobs: | |
docsbuild: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
env: | |
MPLBACKEND: svg | |
PYDEVD_DISABLE_FILE_VALIDATION: 1 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: 3.12 | |
- name: Set up Python | |
run: uv python install | |
- name: Install python essentials | |
run: uv pip install -U setuptools setuptools_scm wheel | |
- name: Install pandoc | |
run: sudo apt-get install pandoc | |
- name: Install dependencies | |
run: | | |
uv pip install ".[all,docs]" | |
uv pip install "./tools/odbclient" | |
- name: Build docs | |
run: sphinx-build -b html docs _build/html |