Related issue scylladb/sphinx-scylladb-theme#395 ScyllaDB Sphinx Theme 1.2 is now released partying_face We’ve added automatic checks for broken links and introduced numerous UI updates. You can read more about all notable changes here. Closes #10313
29 lines
634 B
YAML
29 lines
634 B
YAML
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/**"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: 3.7
|
|
- name: Set up env
|
|
run: make -C docs setupenv
|
|
- name: Build docs
|
|
run: make -C docs test
|