Skip to content

Commit

Permalink
Merge pull request #7 from moul/dev/moul/fix-ci
Browse files Browse the repository at this point in the history
fix: CI + update renovate config
  • Loading branch information
moul committed Jun 30, 2020
2 parents 0b6e68b + 4e3037f commit 95d831c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"extends": [
"config:base"
],
"groupName": "all"
"groupName": "all",
"gomodTidy": true
}
4 changes: 3 additions & 1 deletion pkg/sgtm/driver_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ func (svc *Service) httpServer() (*http.Server, error) {
Title: "SGTM",
Date: time.Now(),
}
tmpl.Execute(w, data)
if err := tmpl.Execute(w, data); err != nil {
svc.logger.Warn("failed to reply", zap.Error(err))
}
})
}

Expand Down

0 comments on commit 95d831c

Please sign in to comment.