Skip to content

release: v0.3.0 — re-ranker, evaluation pipeline, annotate workflow, … #51

release: v0.3.0 — re-ranker, evaluation pipeline, annotate workflow, …

release: v0.3.0 — re-ranker, evaluation pipeline, annotate workflow, … #51

Workflow file for this run

name: Docs
on:
push:
pull_request:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
docs:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
poetry-version: ["2.1.0"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Add poetry to PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dev dependencies
run: poetry install --only dev
- name: Build Sphinx docs
run: poetry run task html_docs