File: sphinx-test.yml

package info (click to toggle)
rpyc 6.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,324 kB
  • sloc: python: 6,442; makefile: 122
file content (23 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "Sphinx Test"
on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  docs-linkcheck-nitpicky:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Set up Python 3
        uses: actions/setup-python@v4
        with:
          python-version: 3.12
      - name: Install Dependencies
        run: |
          pip install -r docs/requirements.txt
      - name: Build linkcheck with nit-picky mode
        working-directory: docs
        run: |
          sphinx-build -W --keep-going -b linkcheck -n -d _build/doctrees . _build/linkcheck