.travis.yml 660 B

12345678910111213141516171819202122232425262728293031323334
  1. language: python
  2. python:
  3. - 3.6
  4. - 3.7
  5. cache:
  6. pip: true
  7. install:
  8. - python -m pip install pre-commit setuptools wheel
  9. - python -m pip install -r requirements.txt
  10. - python setup.py install
  11. before_script:
  12. - pre-commit run --all-files
  13. script:
  14. - mkdir html
  15. - sphinx-multiversion -W docs html
  16. - python setup.py build sdist bdist_wheel
  17. # Deployment
  18. before_deploy:
  19. - touch html/.nojekyll
  20. - cp assets/gh-pages-redirect.html html/index.html
  21. deploy:
  22. # Deploy documentation
  23. - provider: pages
  24. skip_cleanup: true
  25. keep_history: false
  26. github_token: $GITHUB_TOKEN
  27. local_dir: html
  28. on:
  29. branch: master
  30. repo: Holzhaus/sphinx-multiversion
  31. python: 3.7