-
Publish Go test results in Azure pipelines
A nice feature of Azure build pipelines is that you can publish test results and test coverage reports that are displayed with the results of a build. Unfortunately Go’s test result file formats aren’t supported, however in this post I’ll show you how to convert them as part of the...
-
1 minute Go build pipelines
One of the things I’m enjoying about working in Go is how fast the compile times are. Not only does that make the local dev/test loop fast but it means we can create more involved automated build pipelines and have them still run in under a minute. Given I use...