We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d546ad commit 1eb1f15Copy full SHA for 1eb1f15
readthedocs.yml renamed to .readthedocs.yml
.travis.yml
@@ -16,15 +16,17 @@ 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
+ overwrite: true
22
on:
23
tags: true
24
25
install:
- - pip install pylint circuitpython-build-tools
26
+ - pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
27
28
script:
29
- pylint adafruit_pca9685.py
30
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)
31
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-pca9685 --library_location .
32
+ - cd docs && sphinx-build -E -W -b html . _build/html
0 commit comments