mirror of
https://github.com/chubin/wttr.in
synced 2024-11-13 23:57:07 +00:00
9 lines
199 B
Makefile
9 lines
199 B
Makefile
srv: srv.go internal/*/*.go internal/*/*/*.go
|
|
go build -o srv -ldflags '-w -linkmode external -extldflags "-static"' ./
|
|
#go build -o srv ./
|
|
|
|
go-test:
|
|
go test ./...
|
|
|
|
lint:
|
|
golangci-lint run ./...
|