wttr.in/Makefile
2022-12-23 14:08:39 +01:00

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