CI Makefile

This commit is contained in:
AlexSSD7 2023-09-01 16:40:56 +01:00
commit b5d92fe7d7

14
Makefile Normal file
View file

@ -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 ./...