forked from scylladb/cpp-rs-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 796 Bytes
/
docs-pr.yaml
File metadata and controls
37 lines (31 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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:
permissions:
contents: read
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