python/.travis.yml

21 lines
294 B
YAML
Raw Normal View History

language: python
2015-12-19 14:25:38 +00:00
python:
- "3.6"
2015-12-19 14:25:38 +00:00
before_script:
- pip install mkdocs mkdocs-material
2015-12-19 14:25:38 +00:00
script:
- cp README.md docs/index.md
- mkdocs build
deploy:
provider: pages
local-dir: "site"
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
on:
branch: master