mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 00:27:09 +00:00
8 lines
178 B
Makefile
8 lines
178 B
Makefile
srv: srv.go internal/*/*.go internal/*/*/*.go
|
|
go build -o srv -ldflags '-w -linkmode external -extldflags "-static"' ./
|
|
|
|
go-test:
|
|
go test ./...
|
|
|
|
lint:
|
|
golangci-lint run ./...
|