We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c56c38 commit 5f502fdCopy full SHA for 5f502fd
readthedocs.yml renamed to .readthedocs.yml
.travis.yml
@@ -16,15 +16,16 @@ deploy:
16
provider: releases
17
api_key: $GITHUB_TOKEN
18
file_glob: true
19
- file: bundles/*
+ file: $TRAVIS_BUILD_DIR/bundles/*
20
skip_cleanup: true
21
on:
22
tags: true
23
24
install:
25
- - pip install pylint circuitpython-build-tools
+ - pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
26
27
script:
28
- pylint neopixel.py
29
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)
30
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-neopixel --library_location .
31
+ - cd docs && sphinx-build -E -W -b html . _build/html
0 commit comments