Add tests, fix Makefile

This commit is contained in:
2024-12-06 15:27:45 -05:00
parent 820141f865
commit ee53efbcd6
2 changed files with 66 additions and 1 deletions

View File

@ -8,7 +8,7 @@ MAPPER_GEN_FILE := ./api/eiaapi_funcmap.gen.go
GO_FORMATTER := gofumpt
IS_GNU_SED := $(shell sed --version >/dev/null 2>&1 && echo true || echo false)
SED_INLINE := $(if $(IS_GNU_SED),-i,-i '')
SED_INLINE := $(if $(filter true,$(IS_GNU_SED)),-i,-i '')
.PHONY: all schema generate test build install clean