wttr.in/Makefile
2023-10-16 08:29:25 +02:00

10 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 ./...