ngn
7cea387f02
Some checks failed
Build and publish the docker image / build (push) Failing after 1m8s
Signed-off-by: ngn <ngn@ngn.tf>
16 lines
196 B
Makefile
16 lines
196 B
Makefile
CGO_ENABLED=1
|
|
|
|
all:
|
|
templ generate
|
|
cat ./style/*.css > ./static/style.css
|
|
CGO_ENABLED=$(CGO_ENABLED) go build
|
|
|
|
test:
|
|
go test ./... -v
|
|
|
|
format:
|
|
gofmt -s -w .
|
|
templ fmt .
|
|
|
|
.PHONY: test format
|