Format all code go
Reformat all .go files in the current tree
gofmt -w .
more go
all 10 commands →
Static analysis with vet
go vet ./...
Build binary for Linux
GOOS=linux GOARCH=amd64 go build -o bin/app ./cmd/app
Run tests with race detector
go test -race -count=1 ./...
Show test coverage
go test -coverprofile=cov.out ./... && go tool cover -html=cov.out
Add a dependency
go get github.com/some/pkg@v1.2.3