summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/docs.yml
blob: 4971a49dfbbc7d8f4c3341be685ec555df92b33a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
name: "Build docs"
on:
  push:
  workflow_dispatch:
jobs:
  docs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: ammaraskar/sphinx-action@master
        with:
          pre-build-command: python -m pip install -r requirements/dev_requirements.txt
          docs-folder: "docs/"