1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

added test target to makefile

This commit is contained in:
Matthias Hannig 2019-03-20 11:23:02 +01:00
parent 90ec5e278a
commit 813b0dcfa8
No known key found for this signature in database
GPG key ID: 62E226E47DDCE58D

View file

@ -102,7 +102,14 @@ remote_rpm: build_server dist
scp $(BUILD_SERVER):$(RPM) $(LOCAL_RPMS)/.
.PHONY: test clean
test:
go test -v
cd endpoints/ && go test -v
cd bird/ && go test -v
clean:
rm -f $(PROG)-osx-$(ARCH)
rm -f $(PROG)-linux-$(ARCH)
rm -rf $(DIST)