summaryrefslogtreecommitdiffstats
path: root/.github/workflows/doc.yml
blob: 405b12e3d29c95f9fd1c7c7459d751f1190e774a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Docs

on:
  #push:
  #  branches:
  #  - master
  #  - 3.8
  #  - 3.7
  #  paths:
  #  - 'Doc/**'
  pull_request:
    branches:
    - master
    - 3.8
    - 3.7
    paths:
    - 'Doc/**'
    - 'Misc/**'

jobs:
  build_doc:
    name: 'Docs'
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-python@v1
      with:
        python-version: '3.7'
        architecture: 'x64'
    - name: 'Install build dependencies'
      run: python -m pip install sphinx==2.2.0 blurb python-docs-theme
    - name: 'Build documentation'
      run: |
        cd Doc
        make check suspicious html PYTHON=python
    - name: Upload
      uses: actions/upload-artifact@v1
      with:
        name: doc-html
        path: Doc/build/html