This commit is contained in:
Benedikt Bongartz 2019-05-18 03:47:57 +02:00
parent b780297714
commit ea16e1ba9d
No known key found for this signature in database
GPG key ID: 42342EC23A8A4314
4 changed files with 3 additions and 3 deletions

View file

@ -25,6 +25,7 @@ cache:
install:
- go get -u -v github.com/alecthomas/gometalinter/
- go get -u -v golang.org/x/lint/golint
script:
- ./scripts/travis-test.sh

View file

@ -139,6 +139,6 @@ func writeEvent(event gomatrixserverlib.Event) {
panic(err)
}
} else {
panic(fmt.Errorf("Format %q is not valid, must be %q or %q", format, "InputRoomEvent", "Event"))
panic(fmt.Errorf("Format %v is not valid, must be %q or %q", format, "InputRoomEvent", "Event"))
}
}

View file

@ -6,7 +6,6 @@
"vetshadow",
"deadcode",
"gocyclo",
"golint",
"varcheck",
"structcheck",
"ineffassign",

View file

@ -55,7 +55,7 @@ fi
if [ "${TEST_SUITE:-integ-test}" == "integ-test" ]; then
travis_start go-build "Building dendrite and integ tests"
go build
go build ./...
travis_end
# Check that all the packages can build.