mirror of
https://github.com/vale981/sphinx-multiversion
synced 2025-03-04 17:11:39 -05:00
19 lines
325 B
YAML
19 lines
325 B
YAML
language: python
|
|
python:
|
|
- 3.5
|
|
- 3.6
|
|
- 3.7
|
|
cache:
|
|
pip: true
|
|
|
|
install:
|
|
- python -m pip install flake8 setuptools wheel
|
|
- python -m pip install -r requirements.txt
|
|
- python setup.py install
|
|
|
|
before_script:
|
|
- flake8 --statistics .
|
|
script:
|
|
- mkdir html
|
|
- sphinx-multiversion docs html
|
|
- python setup.py build sdist bdist_wheel
|