From 2cb5e185eb9ed98dbe4afee49e03bcdd3f1f8d53 Mon Sep 17 00:00:00 2001 From: Florian Dehau Date: Sun, 21 May 2017 13:58:36 +0200 Subject: [PATCH] [CI] Fix missing build and test command in scripts/travis/script.sh --- scripts/travis/script.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 0b89774e..bb8c739b 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -2,6 +2,8 @@ set -eu +make build +make test if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then make lint fi