Skip to content

Bump pytest from 9.0.2 to 9.0.3 (#69) #60

Bump pytest from 9.0.2 to 9.0.3 (#69)

Bump pytest from 9.0.2 to 9.0.3 (#69) #60

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
docs-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --extra docs
- name: Build docs
run: uv run mkdocs build --strict
docs-deploy:
runs-on: ubuntu-latest
needs: docs-build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --extra docs
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Deploy docs
run: uv run mkdocs gh-deploy --force --clean