Skip to content

doc: publish the docs for version v1.0.0 #35

doc: publish the docs for version v1.0.0

doc: publish the docs for version v1.0.0 #35

Workflow file for this run

name: "Docs / Build PR"
# For more information,
# see https://sphinx-theme.scylladb.com/stable/deployment/production.html#available-workflows
on:
pull_request:
branches:
- master
paths:
- "docs/**"
- ".github/workflows/docs-pr.yaml"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
working-directory: docs
enable-cache: true
- name: Install doxygen
run: sudo apt-get update && sudo apt-get install -y doxygen
- name: Build docs
run: make -C docs test