Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
go
/
List all packages
List all packages
go
Print import paths of all packages in the module
go list ./...
⎘ copy
#go
more go
all 10 commands →
Format all code
gofmt -w .
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