Run calens on Travis

This commit is contained in:
Alexander Neumann 2017-12-27 21:10:11 +01:00
parent ca1430184f
commit 75f90ca303
1 changed files with 6 additions and 0 deletions

View File

@ -96,6 +96,7 @@ func (env *TravisEnvironment) Prepare() error {
"github.com/NebulousLabs/glyphcheck",
"github.com/golang/dep/cmd/dep",
"github.com/restic/rest-server/cmd/rest-server",
"github.com/restic/calens",
}
for _, pkg := range pkgs {
@ -285,6 +286,11 @@ func (env *TravisEnvironment) RunTests() error {
return err
}
// check that the entries in changelog/ are valid
if err := run("calens"); err != nil {
fmt.Fprintf(os.Stderr, "calens failed, files in changelog/ are not valid\n")
}
return nil
}