File: docs.yml

package info (click to toggle)
vcr.py 8.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,036 kB
  • sloc: python: 6,275; makefile: 188; sh: 1
file content (23 lines) | stat: -rw-r--r-- 487 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Validate docs

on:
  push:
    paths:
      - 'docs/**'

jobs:
  validate:
    runs-on: ubuntu-24.04

    steps:
      - uses: actions/checkout@v6
      - uses: actions/setup-python@v6
        with:
          python-version: "3.12"

      - name: Install build dependencies
        run: pip install -r docs/requirements.txt
      - name: Rendering HTML documentation
        run: sphinx-build -b html docs/ html
      - name: Inspect html rendered
        run: cat html/index.html