Skip to content

docs: document YENTE_SCORE_EARLY_STOP_BUDGET setting #531

docs: document YENTE_SCORE_EARLY_STOP_BUDGET setting

docs: document YENTE_SCORE_EARLY_STOP_BUDGET setting #531

Workflow file for this run

name: docs
on:
push:
# branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install system dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get install -y -qq libicu-dev
- uses: actions/setup-python@v6
with:
cache: 'pip'
python-version: "3.12"
- name: Install requirements
run: |
pip install --no-cache-dir -q --group dev --group docs -e .
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with mkdocs
run: mkdocs build -c -d site
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./site
# Deployment job
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4