From 70d77b43ca5bce598b06bff4e54c9c49345ba920 Mon Sep 17 00:00:00 2001 From: Emiel Hollander Date: Sat, 8 Dec 2018 10:47:18 +0100 Subject: Improve automated tests --- .travis.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 3401a70..6085764 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,17 @@ +env: + - HUGO_VERSION="0.50" + - HUGO_VERSION="0.51" + - HUGO_VERSION="0.52" + install: - - wget https://github.com/gohugoio/hugo/releases/download/v0.52/hugo_0.52_Linux-64bit.tar.gz - - tar -xzvf hugo_0.52_Linux-64bit.tar.gz - - chmod +x hugo - - export PATH=$PATH:$PWD + - wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz + - tar xf hugo_${HUGO_VERSION}_Linux-64bit.tar.gz + - mv hugo ~/bin/ - hugo version + - gem install html-proofer - git clone https://github.com/gohugoio/hugoBasicExample.git - - cd hugoBasicExample - - git submodule add -f https://github.com/EmielH/hallo-hugo.git themes/hallo - - sudo apt-get install -y tree - - tree script: - - hugo -t hallo - - tree + - cd hugoBasicExample + - hugo -t hallo-hugo --themesDir ../.. + - htmlproofer public --check-html --disable-external -- cgit v1.2.3