👷 Added additional actions in Makefile
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Maxim Lebedev 2022-03-26 16:21:06 +05:00
parent 829b0fad05
commit 0f03086098
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 2 additions and 0 deletions

View File

@ -17,9 +17,11 @@ all: main.go
$(GO) build -v $(GOFLAGS) -o $(EXECUTABLE) $<
clean: ## Delete all files in the current directory that are normally created by building the program
-rm $(srcdir)/internal/testing/httptest/{cert,key}.pem
$(GO) clean
check: ## Perform self-tests
$(GO) generate $(srcdir)/internal/testing/httptest/...
$(GO) test -v -cover -failfast -short -shuffle=on $(GOFLAGS) $(srcdir)/...
.PHONY: help