From babbefcb36c5e2e4ab4f1ead16f39045514a3368 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Sat, 20 Apr 2019 12:51:25 +0900 Subject: [PATCH] Updated build scripts --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 65c4b979..e3efd490 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,11 +36,14 @@ before_script: - go get github.com/dustin/go-humanize # Dependency used in pixy files only - npm install -g typescript # TypeScript - git clone --depth=1 https://github.com/animenotifier/database ~/.aero/db/arn # Database + - make tools # Install tools + - tsc # Compile scripts (allow this to fail for now) # script always run to completion (set +e). All of these code checks are must haves # in a modern Go project. script: - - make all # Build + - pack # Pack assets + - make server bots jobs patches # Build - go test -v . # Run all the tests # - go test -v -race ./... # Run all the tests with the race detector enabled - go vet ./... # go vet is the official Go static analyzer