This commit is contained in:
2024-05-13 21:43:47 -07:00
commit f21c916eb3
15 changed files with 437 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
.PHONY: test
default: test
test:
@go test -v ./...
fmt:
goimports -l -w .
golangci-lint run --fix
lint:
golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'