Skip to content

Commit

Permalink
Added Azure Pipelines for doc building
Browse files Browse the repository at this point in the history
  • Loading branch information
CreepPork committed Mar 3, 2019
1 parent 8281c6e commit 5fc2c35
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
jobs:
- job: 'Test'
pool:
vmImage: 'ubuntu-16.04'

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
architecture: 'x64'

- script: python -m pip install --upgrade pip setuptools wheel
displayName: 'Install pip'

- script: pip install sphinx
displayName: 'Install Sphinx'

- script: sphinx-build -nWT -b dummy docs/source/ docs/build/html
displayName: 'Build documentation'

0 comments on commit 5fc2c35

Please sign in to comment.