We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae6b5fb commit e2cb1efCopy full SHA for e2cb1ef
.travis.yml
@@ -20,10 +20,19 @@ jobs:
20
- npm install --no-optional --no-audit --progress=false
21
script:
22
- npm run build
23
+ - python: 3.8
24
+ install:
25
+ - poetry install
26
+ script:
27
+ - cp README.md docs/README.md
28
+ - poetry run mkdocs
29
install:
30
- pip install poetry tox
31
32
- tox -e lint
33
- tox -e $(tox -l | grep ${PYVER} | xargs echo | sed 's/ /,/g')
34
+branches:
35
+ except:
36
+ - gh-pages
37
notifications:
38
email: false
mkdocs.yml
@@ -22,5 +22,6 @@ markdown_extensions:
- pymdownx.tilde
nav:
+ # Auto-magically copied from the root of the project in the CI build.
- 'Home': 'README.md'
- 'Overview': 'overview.md'
0 commit comments