From b5d92fe7d777682357a9b1d216a34ce9610835b3 Mon Sep 17 00:00:00 2001 From: AlexSSD7 Date: Fri, 1 Sep 2023 16:40:56 +0100 Subject: [PATCH] CI Makefile --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile 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