From 4874188789b0459c08dc09c7708ad7fc9d28d3a2 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Sat, 12 May 2018 16:24:29 +0100 Subject: [PATCH 1/2] Add travis.yml Signed-off-by: Adam Warner --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..37145fb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python +install: +- pip install mkdocs-material +script: +- mkdocs build --verbose --clean +deploy: + provider: pages + skip_cleanup: true + github_token: $GITHUB_TOKEN + local_dir: site + on: + branch: master \ No newline at end of file From 6edfbceeaa4a46386951e3831e61364b91be8df8 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Sat, 12 May 2018 16:32:30 +0100 Subject: [PATCH 2/2] add markdown-include to the install script Signed-off-by: Adam Warner --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 37145fb..a3f9409 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: python install: -- pip install mkdocs-material +- pip install mkdocs-material markdown-include script: - mkdocs build --verbose --clean deploy: