ci: Setup GitHub Actions to run unit tests

This commit is contained in:
2019-11-29 03:07:17 +00:00
parent 6e2e24e0f2
commit 9b10b52801
2 changed files with 43 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
default: test
.PHONY: lint
lint:
cd test && golangci-lint run -v
.PHONY: test
test:
cd test && go test -v