File: docs.yaml

package info (click to toggle)
sphinx-needs 5.1.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,108 kB
  • sloc: python: 21,148; javascript: 187; makefile: 95; sh: 29; xml: 10
file content (22 lines) | stat: -rw-r--r-- 559 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
name: Docs CI
on:
  pull_request:
    paths: [docs/**]
jobs:
  linkcheck:
    name: Docs-Linkcheck
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v4
      - name: Set Up Python
        uses: actions/setup-python@v5
        with:
          python-version: "3.10"
      - name: Update pip
        run: python -m pip install --upgrade pip
      - name: Install Dependencies
        run: |
          python -m pip install -e .[docs]
      - name: Run linkcheck
        run: sphinx-build -b linkcheck . _build 
        working-directory: docs