forked from apache/cassandra-python-driver
-
Notifications
You must be signed in to change notification settings - Fork 53
46 lines (41 loc) · 955 Bytes
/
docs-pr.yml
File metadata and controls
46 lines (41 loc) · 955 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
38
39
40
41
42
43
44
45
46
name: "Docs / Build PR"
# For more information,
# see https://sphinx-theme.scylladb.com/stable/deployment/production.html#available-workflows
permissions:
contents: read
on:
push:
branches:
- master
paths:
- "docs/**"
- ".github/workflows/docs-pr.yml"
- "cassandra/**"
- "pyproject.toml"
- "setup.py"
- "CHANGELOG.rst"
pull_request:
paths:
- "docs/**"
- ".github/workflows/docs-pr.yml"
- "cassandra/**"
- "pyproject.toml"
- "setup.py"
- "CHANGELOG.rst"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
working-directory: docs
enable-cache: true
- name: Build docs
run: make -C docs test