diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..af2065e --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +test: + go test ./... -v + +lint-deps: + curl https://raw.githubusercontent.com/AlexSSD7/aslint/master/lint-deps.sh | bash + +lint: + ./bin/golangci-lint run -c bin/.golangci.yml + +security-check-deps: + go install github.com/securego/gosec/v2/cmd/gosec@latest + +security-check: + gosec ./... \ No newline at end of file