linsk/Makefile

14 lines
281 B
Makefile
Raw Normal View History

2023-09-01 16:40:56 +01:00
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 ./...