summaryrefslogtreecommitdiffstats
path: root/.github/workflows/docs.yml
blob: e520ffdae2ac5c159c339df9a4f35d7679db938d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
name: Docsite CI
on:
  pull_request:
jobs:
  docsite-build:
    name: docsite test build
    runs-on: ubuntu-latest
    timeout-minutes: 30
    steps:
      - uses: actions/checkout@v4
        with:
          show-progress: false

      - uses: actions/setup-python@v5
        with:
          python-version: '3.x'

      - name: install tox
        run: pip install tox

      - name: Assure docs can be built
        run: tox -e docs