aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/docs.yml
blob: ec6b4c7f1962a151f6aa9a2a54e756b7029fa5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Build docs

on:
  pull_request:
    paths:
      - docs/**

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v1
    - name: Install Python packages
      run: pip install Sphinx
    - name: Build docs
      run: make -C docs/ html