Skip to content

ci(dependabot): bump actions/checkout from 4 to 5 in the actions group #15

ci(dependabot): bump actions/checkout from 4 to 5 in the actions group

ci(dependabot): bump actions/checkout from 4 to 5 in the actions group #15

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Test that docs build without error
if: github.event_name == 'pull_request'
run: uv run mkdocs build --strict
- name: Deploy docs to GitHub Pages
if: github.event_name == 'push'
run: uv run mkdocs gh-deploy --strict --force