aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint-docs.yaml
blob: e7406b8adf79373d8fb35cec9b90dffa9c0a5e12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Test documentation
on:
  pull_request:

jobs:
  lint-docs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          submodules: recursive
          fetch-depth: 0
      - name: Install Python Dependencies
        uses: HassanAbouelela/actions/setup-python@setup-python_v1.6.0
        with:
          python_version: "3.12"
          install_args: --with docs
      - name: Build docs
        run: poetry run task build-docs