add basic build steps
Some checks failed
Lint / golangci-lint (push) Failing after 10m10s
Declarative Tests / test (push) Failing after 1m8s

This commit is contained in:
Matthew Rich 2024-03-27 13:46:17 -07:00
parent 4b172d0901
commit 6e21966737

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
LDFLAGS?=--ldflags '-extldflags "-static"'
export CGO_ENABLED=0
build: decl
decl:
go build -o decl $(LDFLAGS) ./cmd/cli/main.go