1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

Makefile: adding "test-utils" target.

This commit is contained in:
Henrik Hautakoski 2023-01-02 19:12:56 +01:00
parent d365b5deb1
commit be7a246317
No known key found for this signature in database
GPG key ID: 217490840C18A5D9

View file

@ -18,6 +18,11 @@ build: build/$(PROGRAM_NAME)
build/$(PROGRAM_NAME) : $(SOURCES)
$(GO) build -o $@ $(GOBUILDFLAGS) cmd/antelope-api-healtcheck/main.go
build/antelope-v1-mock-server:
$(GO) build -o $@ $(GOBUILDFLAGS) cmd/antelope-v1-mock-server/main.go
test-utils: build/antelope-v1-mock-server
test:
$(GO) test -v ./...