From 5e2cca2eb1d09e2f2bed772542c18d4914237ba9 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Tue, 5 Dec 2017 22:10:38 -0200 Subject: [PATCH] chore: always run make static on build So we guarantee that docs wont break on change --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 13325be63..75184d1e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,11 +13,12 @@ install: - sudo snap install snapcraft --candidate --classic script: - make ci + - make static - test -n "$TRAVIS_TAG" || go run main.go --skip-validate --skip-publish after_success: - bash <(curl -s https://codecov.io/bash) - test -n "$TRAVIS_TAG" && docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - - test -n "$TRAVIS_TAG" && go run main.go && make static + - test -n "$TRAVIS_TAG" && go run main.go deploy: provider: pages skip_cleanup: true