python/.travis.yml

21 lines
283 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
2019-03-02 16:01:02 +00:00
install:
- pip install -r requirements.txt
2015-12-19 14:25:38 +00:00
script:
- cp README.md docs/index.md
- mkdocs build
2019-03-02 16:01:02 +00:00
deploy:
provider: pages
local-dir: "site"
skip-cleanup: true
keep-history: true
2019-03-02 16:01:02 +00:00
github-token: $GITHUB_TOKEN
on:
branch: master