forked from scylladb/cpp-rs-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 890 Bytes
/
Copy pathdocs-pr.yaml
File metadata and controls
37 lines (31 loc) · 890 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
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