mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-13 11:16:10 -05:00
20 lines
294 B
YAML
20 lines
294 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.6"
|
|
|
|
before_script:
|
|
- pip install mkdocs mkdocs-material
|
|
|
|
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
|