[go-nuts] Re: Speeding up Go Report Card

2016-09-05 Thread James Aguilar
On Friday, September 2, 2016 at 6:50:58 AM UTC-7, Shawn Smith wrote: > > Hi, > > I'm one of the maintainers of Go Report Card http://goreportcard.com/ and > I am looking for advice on how to make it faster. > > Basically we run a series of checks (gofmt, vet, etc.) on your Go > repository and pro

[go-nuts] Re: Speeding up Go Report Card

2016-09-05 Thread Thomas de Zeeuw
Hi Shawn, I don't think Go Report Card is particularly slow, but I have two ideas: 1. Try running the different checks within the process, using the Go API. This should reduce the overhead of creating x processes per report card. But I don't know if every check has an easy to use Go API. 2. Tr