TFS和golang持续集成

I'm tracking the files of my golang app in a local TFS server integrated with git. I want to define build, test, and deploy steps but I can't find any tool for that.

How can I define a build and test step for the project that shows the test results in the Team's web site? thank you.

You can use the vNext build system in TFS2017 and add Command Line task in the build definition to run the build and test just like what you do on local machine: enter image description hereAnd then add a "Publish Test Result" task to publish the test result to TFS so that you can check the test result from the TFS Website. A limitation is that "Publish Test Result" task only support four Test Result Format for now: JUnit, NUnit, VSTest and XUnit.