18 lines
580 B
YAML
18 lines
580 B
YAML
sudo: false
|
|
branches:
|
|
only:
|
|
- master
|
|
- release
|
|
- dev
|
|
- /^(.*\/)?ci-.*$/
|
|
language: python
|
|
python:
|
|
- "3.4"
|
|
# command to install dependencies
|
|
install: "pip install -q -r requirements.txt"
|
|
# command to run tests
|
|
script:
|
|
- sphinx-build -nW -b html -d aspnet/_build/doctrees aspnet aspnet/_build/html
|
|
# Flags used here, not in `make html`:
|
|
# -n Run in nit-picky mode. Currently, this generates warnings for all missing references.
|
|
# -W Turn warnings into errors. This means that the build stops at the first warning and sphinx-build exits with exit status 1. |